PowerShell 會針對使用 PowerShell 磁碟驅動器的命令使用名詞PSDrive。 如需 PowerShell 工作階段中的 PowerShell 磁碟驅動器清單,請使用Get-PSDriveCmdlet。 PowerShell Get-PSDrive Output Name Provider Root CurrentLocation --- --- --- --- A FileSystem A:\ Alias Alias C FileSystem C:\ ...And Set...
OsType: 操作系统类型 OsOperatingSystemSKU: 操作系统 SKU 编号 OsVersion: 操作系统版本号 OsCSDVersion: 操作系统 CSD 版本号 OsBuildNumber: 操作系统构建号 OsHotFixes: 操作系统热补丁列表 OsBootDevice: 引导设备 OsSystemDevice: 系统设备 OsSystemDirectory: 系统目录 OsSystemDrive: 系统驱动器 OsWindowsDirect...
\ Big Drive E:\ CDRom False E:\ G:\ Network NTFS True 69120000 69120000 104853504 G:\ GratefulDead PS N:\> Get-CimInstance -Class Win32_LogicalDisk DeviceID DriveType ProviderName VolumeName Size FreeSpace --- --- --- --- --- --- A: 4 C: 3 Windows 988877418496 771926069248 D: ...
FileSystemLabel,@{Name="UsedSpace(GB)";Expression={$_.SizeUsed/1GB}},@{Name="FreeSpace(GB)";Expression={$_.SizeRemaining/1GB}}# 生成磁盘使用情况报告Get-Volume|Format-TableDriveLetter, FileSystemLabel,@{Name="UsedSpace(GB)";Expression={$_.SizeUsed/1GB}},@{Name="FreeSpace(GB)";Expressio...
通过下面代码可以获取 系统版本和系统是专业版还是教育版 代码语言:javascript 复制 Get-WmiObject Win32_OperatingSystem|Format-List BootDevice,BuildNumber,BuildType,Caption,CodeSet,CountryCode,CreationClassName,CSCreationClassName,CSDVersion,CSName,Description,Locale,Manufacturer,Name,Organization,OSArchitecture,OtherTy...
使用PowerShellGet模块中的Install-Modulecmdlet。 PowerShell Install-ModulexPSDesiredStateConfiguration PowerShellGet模块会将该模块下载到: C:\Program Files\Windows PowerShell\Modules 规划任务 你是否有权访问 Windows Server 2012 R2 的安装文件? 部署环境是否可以访问 Internet 以便从联机库下载 WMF 和模块?
使用Get-PSDrive可获取驱动器信息。 Get-PSDrive 输出: Name Used (GB) Free (GB) Provider Root CurrentLocation --- --- --- --- --- --- Alias Alias C 18.50 13.18 FileSystem C:\ Users\Admin Cert Certificate \ D 0.18 0.00 FileSystem D:\...
Using PowerShell Get-WindowsUpdateLog:1) On the Windows 10 device you wish to read the WindowsUpdate.log open PowerShell with Administrative rights (I prefer to use PowerShell ISE) 2) Perform the command "PS C:\WINDOWS\system32> Get-WindowsUpdateLog", you w...
$logNames='Security','Application','System','Windows PowerShell','Microsoft-Windows-Store/Operational'$logEntries=$logNames|ForEach-Object-Parallel{Get-WinEvent-LogName$_-MaxEvents10000}-ThrottleLimit5$logEntries.Count50000 Parallel 参数指定为每个输入日志名称并行运行的脚本块。
函数 Get-Power 定义两个具有相同名称的参数。由于每个函数都有自己的作用域,这些变量与父范围中定义的变量不同,它们将隐藏父范围中的变量。 函数范围嵌套在脚本作用域内。请注意,函数以递归方式调用自身。 每次执行此操作时,它都会创建另一个嵌套作用域,每个作用域都有其自己的变量 $x 和$y。