上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: Write-Host DU 1.0 - 统计目录大小的脚本,作用和linux的du类似。`n$args = "D:/software"if (!$args){write-host "du 绝对目录名,如:`ndu.ps1 d:/mp3"}elseif (!(Test-Path $args)){write-host "错误:找不到目标目录名!"}else# 我在前人基础上整理,简化了不必要的功能,效果不错。个人感觉比sysinternals的du.exe好。{$b=Get-ChildItem $args -Recurse | Measu 阅读全文
posted @ 2013-09-23 10:42 cnsealine 阅读(4306) 评论(0) 推荐(1) 编辑
摘要: #Runing in Administrator$NICs = Get-WMIObject Win32_NetworkAdapterConfiguration -Filter Index=10#index 要手动修改Foreach($NIC in $NICS){$NIC.EnableStatic("192.168.0.100","255.255.255.0")#若返回值不为0,则是地址有误$NIC.SetGateways("192.168.171.1")$DNSServers = "198.102.234.125" 阅读全文
posted @ 2013-09-23 10:41 cnsealine 阅读(1609) 评论(0) 推荐(1) 编辑
摘要: @echo offecho,请稍等...>Getip.vbs echo Set oDOM=WScript.GetObject("http://iframe.ip138.com/ic.asp"):Do Until oDOM.readyState="complete":WScript.sleep 1:Loop:WScript.echo oDOM.documentElement.outerText:Set oDOM=nothingfor /f "tokens=2,3 delims=[]" %%i in ('"cscr 阅读全文
posted @ 2013-09-22 22:46 cnsealine 阅读(2008) 评论(0) 推荐(2) 编辑
摘要: 洪哥笔记 http://www.splaybow.com/category-powershell/Windows PowerShell Management Cmdlets http://technet.microsoft.com/zh-cn/library/hh849827.aspxWi... 阅读全文
posted @ 2013-09-22 21:15 cnsealine 阅读(174) 评论(0) 推荐(1) 编辑
摘要: 获取系统日志 Get-EventLog -LogName System -EntryType Error -After 2013-9-18查看打开PowerShell的时间 (Get-Process -pid $pid).starttime判断今天星期几 (Get-Date).DayOfWeek判断某年是否为润年 [datetime]::isleapyear(2013) [DateTime]是引用一个日期和时间类型,双冒号(::)在PowerShell中是调用静态方法的意思。IsLeapYear()函数用于判断闰年、平年。参数直接以数字的形式给函数即可。查看IPv4地址 forea... 阅读全文
posted @ 2013-09-22 21:12 cnsealine 阅读(561) 评论(0) 推荐(1) 编辑
摘要: 锁屏 rundll32.exe user32.dll,LockWorkStation休眠 rundll32.exe powrprof.dll,SetSuspendStateAbbrevition / acronym管理工具 Control Admintools字体 fonts系统还原 rstrui ... 阅读全文
posted @ 2013-09-20 02:55 cnsealine 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 系统启动: HKCU\Software\Microsoft\Windows\CurrentVersion\Runnircmd复制路径: REGADD HKCR\*\Shell\Copypath\Command /d "nircmd.exe clipboard set %1"记事本打开: REG ADDHKCR\*\Shell\Notepad\Command /d "notepad.exe %1"IE主页: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main 修改Start Page an 阅读全文
posted @ 2013-09-10 13:27 cnsealine 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 相对路径 Wscript.Echo Left(WScript.ScriptFullName,InStrRev(WScript.ScriptFullName,"\"))显示桌面 CreateObject("Shell.Application").ToggleDesktop加入注册表 Wscript.CreateObject("WScript.Shell").RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\test", ""& 阅读全文
posted @ 2013-09-02 09:19 cnsealine 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1.关闭校园网netsh interface set interface "以太网" "disabled"netsh interface set interface "以太网" "enabled"2.wmic命今wmic DiskDrive get Size /valuewmic diskdrive get size|find /v "S"3.常用运行命令%systemroot%\system32\control.exe /name canonicalName /page pageName (C 阅读全文
posted @ 2013-08-29 18:30 cnsealine 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1.当有种一力量在推动你翱翔时,你是不应该爬行的2.世上最害怕的事就是很多人不从客观出发,把任何事情都神圣化,都觉得“蜀道之难,难于上青天。” 阅读全文
posted @ 2013-08-27 00:49 cnsealine 阅读(86) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页