Difference between revisions of "小代码大作用:电脑开荒代码"

Jump to navigation Jump to search
no edit summary
== Windows 可用 ==
; set-network-private.ps1
: 用于把公用网络改为私用网络,实现全屋共享
: Requires -RunAsAdministrator
 
<syntaxhighlight lang="powershell" line>
; #set-network-private.ps1
:# 用于把公用网络改为私用网络,实现全屋共享。需以管理员权限运行
Set-NetConnectionProfile -InterfaceAlias "以太网" -NetworkCategory Private
</syntaxhighlight>
 
; shutdown.bat
: 用于双击立即关机,省下从开始键点好几下才关机的功夫
<syntaxhighlight lang="powershell" line>
;# shutdown.bat
:# 用于双击立即关机,省下从开始键点好几下才关机的功夫
@echo off
shutdown.exe /s /t 00

Navigation menu