powershell 工作相关的帮助程序,commands.ps1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 工作相关的帮助程序,commands.ps1相关的知识,希望对你有一定的参考价值。

# Grant a service logon rights
Get-UserRightsGrantedToAccount -Account IC\Z-SRV-CWT-DATASYNC
Grant-UserRight -Account IC\Z-SRV-CWT-DATASYNC -Right SeServiceLogonRight 

# Get an AD controller
$adcontroller = get-addomaincontroller -DomainName nww.external -Discover

# Get memory use of processes grouped by process name
 get-process -computername . | Group-Object -Property ProcessName | Format-Table Name, @{n='Mem (KB)';e={'{0:N0}' -f (($_.Group|Measure-Object WorkingSet -Sum).Sum / 1KB)};a='right'} -AutoSize
 
# Get process id of a running service
Get-WmiObject -Class Win32_Service -Filter "Name LIKE 'Nhs.Digital.Cwt.Compliance.Service'" | Select-Object -ExpandProperty ProcessId

以上是关于powershell 工作相关的帮助程序,commands.ps1的主要内容,如果未能解决你的问题,请参考以下文章

powershell 如何定时执行 ps1

powershell 这将获得与SharePoint列表相关的所有工作流

从 Powershell 访问 .NET 组件

Char 03 使用帮助系统

win7怎样运行powershell脚本

powershell实现设置程序相关性