系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 脚本中心 > PowerShell > 详细页面

powershell远程管理服务器磁盘空间的实现代码

时间:2020-01-28来源:系统城作者:电脑系统城

一、启用远程管理

1、将管理服务器的trusthost列表改为*

运行Set-item wsman:localhost\client\trustedhosts –value *

2、在远程服务器上运行Enable-PSremoting

注:

在本地服务器上以Administrator运行“Enable-Psremoting 、 Winrm Quickconfig 、  Set-WSManQuickConfig”,均提示“访问被拒绝”,可能的原因如下:

1.在工作组计算机上,确认组策略: secpol.msc > Local Policies > Security Options > Network Access: Sharing and security model for local accounts - change to classic
2.修改注册表:Set-ItemProperty –Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System –Name  LocalAccountTokenFilterPolicy –Value 1 –Type DWord
3.确认WinRM服务是否正在运行,Windows Firewall服务是否正在运行,网络位置是否不是“公用”,如果要启用PS远程管理,此时网络位置不能被设置为public,因为Windows 防火墙例外不能在网络位置是public时被启用。
4.Telnet localhost 47001是否可以连通
5.运行 winrm get winrm/config 是否会提示“访问被拒绝”
6.Administrator密码不能为空

远程启用开启之后可以在cmd命令窗口输入wbemtest测试是否可以连接远程服务器,如图:

连接成功的状态如下所示:

下面就可以来取每个服务器的磁盘空间了

二、脚本


 
  1. $server = "."
  2. $uid = "sa"
  3. $db="master"
  4. $pwd="数据库sa密码"
  5. $mailprfname = "test" ---需要跟select name FROM msdb.dbo .sysmail_profile一致
  6. $recipients = "接收邮箱,多个用;隔开"
  7. $subject = "邮件标题"
  8. $computernamexml = "E:\powershell\computername.xml"
  9. $alter_xml = "E:\powershell\cpdisk.xml"
  10. $pwd_xml = "E:\powershell\pwd.xml"
  11. function GetServerName($xmlpath)
  12. {
  13. $xml = [xml] (Get-Content $xmlpath)
  14. $return = New-Object Collections.Generic.List[string]
  15. for($i = 0;$i -lt $xml.computernames.ChildNodes.Count;$i++)
  16. {
  17. if ( $xml.computernames.ChildNodes.Count -eq 1)
  18. {
  19. $cp = [string]$xml.computernames.computername
  20. }
  21. else
  22. {
  23. $cp = [string]$xml.computernames.computername[$i]
  24. }
  25. $return.Add($cp.Trim())
  26. }
  27. $return
  28. }
  29. function GetAlterCounter($xmlpath)
  30. {
  31. $xml = [xml] (Get-Content $xmlpath)
  32. $return = New-Object Collections.Generic.List[string]
  33. $list = $xml.counters.Counter
  34. $list
  35. }
  36. function Getpwd($xmlpath)
  37. {
  38. $xml = [xml] (Get-Content $xmlpath)
  39. $returnpwd = New-Object Collections.Generic.List[string]
  40. for($i = 0;$i -lt $xml.pwd.ChildNodes.Count;$i++)
  41. {
  42. if ( $xml.pwds.ChildNodes.Count -eq 1)
  43. {
  44. $pw = [string]$xml.pwd.password
  45. }
  46. else
  47. {
  48. $pw = [string]$xml.pwd.password[$i]
  49. }
  50. $returnpwd.Add($pw.Trim())
  51. }
  52. $returnpwd
  53. }
  54. function CreateAlter($message)
  55. {
  56. $SqlConnection = New-Object System.Data.SqlClient.SqlConnection
  57. $CnnString ="Server = $server; Database = $db;User Id = $uid; Password = $pwd"
  58. $SqlConnection.ConnectionString = $CnnString
  59. $CC = $SqlConnection.CreateCommand();
  60. if (-not ($SqlConnection.State -like "Open")) { $SqlConnection.Open() }
  61.  
  62. $cc.CommandText=
  63. " EXEC msdb..sp_send_dbmail
  64. @profile_name = '$mailprfname'
  65. ,@recipients = '$recipients'
  66. ,@body = '$message'
  67. ,@subject = '$subject'
  68. "
  69. $cc.ExecuteNonQuery()|out-null
  70. $SqlConnection.Close();
  71. }
  72. $names = GetServerName($computernamexml)
  73. $pfcounters = GetAlterCounter($alter_xml)
  74. $upwd = Getpwd($pwd_xml)
  75. $report = ""
  76. for($m=0;$m -lt $names.count;$m++)
  77. {
  78. $cp=$names[$m]
  79. $p=New-Object -TypeName System.Collections.ArrayList
  80. $uname="administrator"--因为取的服务器用户名都是administrator,如果每台机器不一样,可以放在XML等文件中读取
  81. $pw=$upwd[$m]
  82. $upassword=convertto-securestring $pw -AsplainText -force;
  83. foreach ($pfc in $pfcounters)
  84. {
  85. $filter="deviceID='"+$pfc.get_InnerText().Trim()+"'"
  86. #$Disk =get-wmiobject win32_logicaldisk -computername $cp -Filter $filter
  87. #$counter=$Disk.Freespace/1024MB
  88. $cred=new-object system.management.automation.PSCredential($uname,$upassword);
  89. $counter=(get-wmiobject -credential $cred -class win32_logicaldisk -computername $cp -filter $filter).Freespace/1024MB
  90. $total=(get-wmiobject -credential $cred -class win32_logicaldisk -computername $cp -filter $filter).Size/1024MB
  91. #$pfc = $pfcounters[$i]
  92. $path = "机器名:"+$cp+"; 盘符:"+$pfc.get_InnerText()
  93. $diskFree=";总磁盘空间大小为:"+[math]::truncate($total).ToString()+"G;当前剩余空间大小为:"+[math]::truncate($counter).ToString()+"G!"
  94. $item = "{0} {1} " -f $path,$diskFree
  95. $report += $item + "`n"
  96. }
  97.  
  98. }
  99. $report
  100. if($report -ne "")
  101. {
  102. CreateAlter $report
  103. }

效果:

附:

xml文件格式:

1、computername.xml


 
  1. <computername>
  2. <computername>
  3. test
  4. </computername>
  5. </computernames>

2、cpdisk.xml


 
  1. <Counters>
  2. <Counter>C:</Counter>
  3. <Counter>D:</Counter>
  4. </Counters>

3、pwd.xml


 
  1. <pwd>
  2. <password>
  3. helloworld
  4. </password>
  5. <pwd>

完毕,欢迎拍砖!大笑

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载