码迷,mamicode.com
首页 > 其他好文 > 详细

powershell

时间:2014-08-18 23:33:13      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   ar   art   cti   on   sp   

start-service Wecsvc
stop-service Wecsvc

 

 

$USER ="dosapp"
(Get-Content D:\system.ini) | ForEach-Object { $_-replace "woafont=.+","woafont=$user" } | Set-Content D:\system.ini

 

function Set-RegistryValue($key, $name, $value, $type="String") { 
  if ((Test-Path $key) -eq $false) { md $key | Out-Null } 
       Set-ItemProperty $key $name $value -type $type 
  } 

 

function Get-RegistryValues($key) { 
                 (Get-Item $key).GetValueNames() 
}

powershell,布布扣,bubuko.com

powershell

标签:os   io   for   ar   art   cti   on   sp   

原文地址:http://www.cnblogs.com/rosizel/p/3920705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!