找到 463 篇文章 关于 PowerShell

解释 PowerShell 中的 Get-Date 函数。

Chirag Nagrekar
更新于 2020-03-20 06:52:48

511 次查看

PowerShell 中的 Get-Date 函数用于获取当前系统日期和时间。例如,当您简单地键入 Get-Date 时,输出将是:Get-DatePS C:\WINDOWS\system32> Get-Date 2020年3月18日 19:17:03当您检查 (Get-Date) 函数的类型时,它是 DateTime。(Get-Date).GetType() PS C:\WINDOWS\system32> (Get-Date).GetType() IsPublic IsSerial    Name       BaseType -------- --------    ----       -------- True     True        DateTime    System.ValueType当您检查 (Get-Date) 的所有属性时。PS C:\WINDOWS\system32> Get-Date | fl * DisplayHint : DateTime DateTime    : 2020年3月18日 19:32:32 Date        : 18-03-2020 ... 阅读更多

如何在 PowerShell 中将整型变量转换为字符串变量?

Chirag Nagrekar
更新于 2020-03-20 06:48:35

32K+ 次查看

要将整型变量转换为字符串变量,您需要使用显式转换或函数方法。在下面的示例中,我们将一个整数值分配给变量 $X。$x = 120 $x.GetType().Name现在,当您检查该变量的数据类型时,它将是 Int32。要将其转换为字符串变量,首先,我们将使用显式方法,使用方括号和要转换的数据类型放在括号内。[string]$x = 130 $x.GetType().Name$x 的数据类型是 String。在第二种方法中,您可以使用 PowerShell 函数方法 ToString() 进行转换。例如 ... 阅读更多

如何在 PowerShell 中获取变量的数据类型?

Chirag Nagrekar
更新于 2020-03-20 06:42:48

74K+ 次查看

变量存在不同的数据类型,例如 Byte、Int32、Float、String 等。要获取变量类型,我们需要使用 GetType() 方法。示例$x = 10 $x.GetType()输出IsPublic IsSerial Name    BaseType -------- -------- ----    -------- True     True     Int32   System.ValueType要仅获取变量数据类型,请使用 Name 属性。$x.GetType().NameInt32

如何将文件内容转换为大写或小写?

Chirag Nagrekar
更新于 2020-03-16 07:53:22

3K+ 次查看

要将文件内容转换为大写,您需要使用 ToUpper() 方法;要转换为小写,您需要使用 ToLower() 方法。大写示例(Get-Content D:\Temp\PowerShellaliases.txt).ToUpper()输出PS C:\WINDOWS\system32> (Get-Content D:\Temp\PowerShellaliases.txt).ToUpper() COMMANDTYPE     NAME                                               VERSION    SOURCE -----------     ----                                               -------    ------ ALIAS         ... 阅读更多

如何使用 PowerShell 在文件中搜索?

Chirag Nagrekar
更新于 2020-03-16 07:51:34

13K+ 次查看

要在 PowerShell 中搜索文件中的内容,您需要首先使用 Get-Content 命令获取文件内容,然后您需要添加 Select-String 管道命令。在下面的示例中,我们需要搜索包含 Get 字样的行。PS C:\WINDOWS\system32> Get-Content D:\Temp\PowerShellaliases.txt | Select-String -Pattern Get Alias           cat -> Get-Content Alias           dir -> Get-ChildItem Alias           gal -> Get-Alias Alias           gbp -> Get-PSBreakpoint Alias           gc -> Get-Content Alias   ... 阅读更多

如何在 PowerShell 中从文件中检索特定数量的行?

Chirag Nagrekar
更新于 2020-03-16 07:50:22

1K+ 次查看

要从文件开头或结尾检索特定数量的行,您首先需要使用 Get-Content 获取文件内容,然后需要使用管道 -First 从开头检索指定数量的文件,以及 -Last 从底部检索指定数量的行。查看下面检索前 10 行内容的示例。示例Get-Content D:\Temp\PowerShellaliases.txt -First 10输出PS C:\WINDOWS\system32> Get-Content D:\Temp\PowerShellaliases.txt -First 10 CommandType     Name                                               Version ... 阅读更多

如何在 PowerShell 中统计文件中行的总数?

Chirag Nagrekar
更新于 2023-11-03 21:24:10

31K+ 次查看

要在 PowerShell 中统计文件中行的总数,您首先需要使用 Get-Content cmdlet 检索项目的内容,然后需要使用 Length() 方法来检索行的总数。下面显示了一个示例。示例(Get-Content D:\Temp\PowerShellcommands.csv).Length输出PS C:\WINDOWS\system32> (Get-Content D:\Temp\PowerShellcommands.csv).Length 5727

如何在 PowerShell 中检索文件的内容?

Chirag Nagrekar
更新于 2020-03-16 07:47:36

525 次查看

要在 PowerShell 中检索文件的内容,您需要使用 Get-Content cmdlet。例如,我们将从特定位置检索名为 Aliases.txt 的文本文件的内容。示例Get-Content D:\Temp\aliases.txt输出PS C:\WINDOWS\system32> Get-Content D:\Temp\aliases.txt # Alias File # Exported by : admin # Date/Time : 26 January 2020 19:20:24 # Computer : DESKTOP-9435KM9 "foreach", "ForEach-Object", "", "ReadOnly,  AllScope" "%", "ForEach-Object", "", "ReadOnly,  AllScope" "where", "Where-Object", "", "ReadOnly,  AllScope" "?", "Where-Object", "", "ReadOnly,  AllScope" "ac", "Add-Content", "", "ReadOnly,  AllScope" "clc", "Clear-Content", "", "ReadOnly,  AllScope" "cli", "Clear-Item", "", "ReadOnly,  AllScope" "clp", "Clear-ItemProperty", "", "ReadOnly,  AllScope" "clv", "Clear-Variable", "", "ReadOnly,  AllScope" "compare", "Compare-Object", "", "ReadOnly,  AllScope" "cpi", "Copy-Item", "", "ReadOnly,  AllScope" "cpp", "Copy-ItemProperty", "", "ReadOnly,  AllScope" "cvpa", "Convert-Path", ... 阅读更多

PowerShell 中的 Get-Content 用于什么?

Chirag Nagrekar
更新于 2020-03-16 07:45:32

361 次查看

PowerShell 中的 Get-Content cmdlet 用于检索文件或函数的内容。此 cmdlet 在 PowerShell 3.0 中引入。当此 cmdlet 读取文件时,它一次读取一行,最后将整个内容作为对象的集合返回。语法Get-Content    [-ReadCount ]    [-TotalCount ]    [-Tail ]    [-Path]    [-LiteralPath]    [-Filter ]    [-Include ]    [-Exclude ]    [-Force]    [-Credential ]    [-Delimiter ]    [-Wait]    [-Raw]    [-Encoding ]    [-AsByteStream]    [-Stream ]    []

如何在 PowerShell 中清空回收站的内容?

Chirag Nagrekar
更新于 2020-03-16 07:42:35

3K+ 次查看

Windows 操作系统中的回收站用于存储软删除的数据。软删除数据是指,不是使用 (SHIFT + DEL) 键删除的数据,而是简单地使用 DEL 键删除的数据。每个本地磁盘都有其自身配置的回收站空间。要使用 GUI 删除回收站数据,您可以简单地右键单击并删除内容。也可以使用 PowerShell 命令和 Clear-Recyclebin cmdlet 删除回收站内容。此命令在 PowerShell 5 中引入,在新版本中也可用。示例Clear-RecycleBin输出PS C:\WINDOWS\system32> Clear-RecycleBin Confirm 您确定要执行此操作吗?正在对目标“回收站的所有内容”执行操作“Clear-RecycleBin”。[Y] 是  [A] 全部是 ... 阅读更多

广告