{"id":5621,"date":"2015-06-11T00:01:00","date_gmt":"2015-06-11T00:01:00","guid":{"rendered":"https:\/\/blogs.technet.microsoft.com\/heyscriptingguy\/2015\/06\/11\/table-of-basic-powershell-commands\/"},"modified":"2019-02-18T09:47:28","modified_gmt":"2019-02-18T16:47:28","slug":"table-of-basic-powershell-commands","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/scripting\/table-of-basic-powershell-commands\/","title":{"rendered":"Table of Basic PowerShell Commands"},"content":{"rendered":"<p><b style=\"font-size:12px\">Summary<\/b><span style=\"font-size:12px\">: Ed Wilson, Microsoft Scripting Guy, provides a table of basic Windows PowerShell commands.<\/span>\nMicrosoft Scripting Guy, Ed Wilson, is here. Some questions are simply confusing, and other questions can be misleading, or even wrong. What do I mean? Well, I recently received a question from a person who wanted to know how to &ldquo;use WMI to do xyz&hellip;&rdquo;\nSuch a question betrays an assumption. For example, it may be that the best way to accomplish a specific task is to not use WMI, but to use &ldquo;native Windows PowerShell&rdquo; functionality. Certainly, for example, I would use <b>Get-Process<\/b> to retrieve process information on my local computer&mdash;unless there was something that WMI would do differently or provide an alternate capability.\nAt times, I will clarify a person&#8217;s question, intention, and goals. At other times, I will directly answer the question, and then suggest a better way to accomplish what I think the goal is. Other times, I will answer what I think their question is and be done with it.\nWhen a person asks about Windows PowerShell commands, are they really talking about native Windows PowerShell commands (such as the language statements <b>For<\/b>, <b>Foreach<\/b>, or <b>Switch<\/b>)? Or are they talking about Windows PowerShell cmdlets? Or are they talking about a string of Windows PowerShell cmdlets that taken together become a unique Windows PowerShell command?\nWhen I am writing my Windows PowerShell books (such as my book, <a href=\"http:\/\/www.amazon.com\/Windows-PowerShell-Best-Practices-Wilson\/dp\/0735666490\/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1433953137&amp;sr=1-1&amp;keywords=powershell+best+practices\" target=\"_blank\">Windows PowerShell Best Practices<\/a>), I tend to call a collection of Windows PowerShell cmdlets that are strung together to accomplish a specific task in a Windows PowerShell command.\nBut at other times, I actually vary my answer according to what I perceive to be the level of expertise of the questioner. For example, often people will come to me after I have spoken at a conference (such as the <a href=\"http:\/\/www.itprocamp.com\/jacksonville2015\/\" target=\"_blank\">IT Pro Camp in Jacksonville<\/a> where Teresa and I will be speaking this Saturday). If they ask something like, &ldquo;I know nothing about Windows PowerShell. Can you tell me the most basic Windows PowerShell commands?&rdquo; I will not necessarily take the time to tell them that they are probably asking about cmdlets, not commands.<\/p>\n<p>With this in mind, the following chart lists Windows PowerShell command aliases, the Windows PowerShell cmdlet name, and a description of what the command actually does.<\/p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p><b>Command alias<\/b><\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p><b>Cmdlet name<\/b><\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p><b>Description of command<\/b><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>%<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>ForEach-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Performs an operation against each item in a collection of input objects.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>?<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Where-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Selects objects from a collection based on their property values.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ac<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Add-Content<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Appends content, such as words or data, to a file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>asnp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Add-PSSnapIn<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Adds one or more Windows PowerShell snap-ins to the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cat<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Content<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the contents of a file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cd<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-Location<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sets the current working location to a specified location.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>chdir<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-Location<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sets the current working location to a specified location.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>clc<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-Content<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes the contents of an item, but does not delete the item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>clear<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-Host<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Clears the display in the host program.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>clhy<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-History<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes entries from the command history.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cli<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes the contents of an item, but does not delete the item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>clp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-ItemProperty<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes the value of a property but does not delete the property.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cls<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-Host<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Clears the display in the host program.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>clv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Clear-Variable<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes the value of a variable.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cnsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Connect-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Reconnects to disconnected sessions<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>compare<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Compare-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Compares two sets of objects.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>copy<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Copy-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Copies an item from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Copy-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Copies an item from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cpi<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Copy-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Copies an item from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cpp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Copy-ItemProperty<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Copies a property and value from a specified location to another location.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>curl<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-WebRequest<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets content from a webpage on the Internet.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>cvpa<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Convert-Path<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Converts a path from a Windows PowerShell path to a Windows PowerShell provider path.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>dbp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Disable-PSBreakpoint<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Disables the breakpoints in the current console.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>del<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>diff<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Compare-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Compares two sets of objects.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>dir<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-ChildItem<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the files and folders in a file system drive.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>dnsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Disconnect-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Disconnects from a session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ebp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Enable-PSBreakpoint<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Enables the breakpoints in the current console.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>echo<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Write-Output<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sends the specified objects to the next command in the pipeline. If the command is the last command in the pipeline, the objects are displayed in the console.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>epal<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Export-Alias<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Exports information about currently defined aliases to a file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>epcsv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Export-Csv<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Converts objects into a series of comma-separated (CSV) strings and saves the strings in a CSV file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>epsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Export-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Imports commands from another session and saves them in a Windows PowerShell module.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>erase<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>etsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Enter-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Starts an interactive session with a remote computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>exsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Exit-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Ends an interactive session with a remote computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>fc<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Format-Custom<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Uses a customized view to format the output.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>fl<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Format-List<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Formats the output as a list of properties in which each property appears on a new line.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>foreach<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>ForEach-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Performs an operation against each item in a collection of input objects.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ft<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Format-Table<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Formats the output as a table.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>fw<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Format-Wide<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Formats objects as a wide table that displays only one property of each object.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gal<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Alias<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the aliases for the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gbp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-PSBreakpoint<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the breakpoints that are set in the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gc<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Content<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the contents of a file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gci<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-ChildItem<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the files and folders in a file system drive.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gcm<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Command<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets all commands.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gcs<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-PSCallStack<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Displays the current call stack.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gdr<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-PSDrive<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets drives in the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ghy<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-History<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets a list of the commands entered during the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gi<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gjb<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Job<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets Windows PowerShell background jobs that are running in the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gl<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Location<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets information about the current working location or a location stack.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gm<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Member<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the properties and methods of objects.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gmo<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Module<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the modules that have been imported or that can be imported into the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-ItemProperty<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the properties of a specified item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gps<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Process<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the processes that are running on the local computer or a remote computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>group<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Group-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Groups objects that contain the same value for specified properties.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the Windows PowerShell sessions on local and remote computers.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gsnp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-PSSnapIn<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the Windows PowerShell snap-ins on the computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gsv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Service<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the services on a local or remote computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gu<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Unique<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Returns unique items from a sorted list.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Variable<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the variables in the current console.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>gwmi<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-WmiObject<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets instances of Windows Management Instrumentation (WMI) classes or information about the available classes.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>h<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-History<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets a list of the commands entered during the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>history<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-History<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets a list of the commands entered during the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>icm<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-Command<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Runs commands on local and remote computers.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>iex<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-Expression<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Runs commands or expressions on the local computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ihy<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-History<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Runs commands from the session history.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ii<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Performs the default action on the specified item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ipal<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Import-Alias<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Imports an alias list from a file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ipcsv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Import-Csv<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates table-like custom objects from the items in a CSV file.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ipmo<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Import-Module<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Adds modules to the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ipsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Import-PSSes\nsion<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Imports commands from another session into the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>irm<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-RestMethod<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sends an HTTP or HTTPS request to a RESTful web service.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ise<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>powershell_ise.exe<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Explains how to use the PowerShell_ISE.exe command-line tool.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>iwmi<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-WMIMethod<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Calls Windows Management Instrumentation (WMI) methods.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>iwr<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-WebRequest<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets content from a web page on the Internet.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>kill<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Stop-Process<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Stops one or more running processes.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>lp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Out-Printer<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sends output to a printer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ls<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-ChildItem<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the files and folders in a file system drive.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>man<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>help<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Displays information about Windows PowerShell commands and concepts.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>md<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>mkdir<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a new item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>measure<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Measure-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Calculates the numeric properties of objects, and the characters, words, and lines in string objects, such as files of text.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>mi<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Move-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Moves an item from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>mount<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-PSDrive<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates temporary and persistent mapped network drives.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>move<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Move-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Moves an item from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>mp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Move-ItemProperty<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Moves a property from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>mv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Move-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Moves an item from one location to another.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>nal<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-Alias<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a new alias.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ndr<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-PSDrive<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates temporary and persistent mapped network drives.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ni<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a new item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>nmo<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-Module<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a new dynamic module that exists only in memory.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>npssc<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-PSSessionConfigurationFile<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a file that defines a session configuration.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>nsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a persistent connection to a local or remote computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>nv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>New-Variable<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates a new variable.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ogv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Out-GridView<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sends output to an interactive table in a separate window.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>oh<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Out-Host<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sends output to the command line.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>popd<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Pop-Location<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Changes the current location to the location most recently pushed to the stack. You can pop the location from the default stack or from a stack that you create by using the Push-Location cmdlet.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ps<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Process<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the processes that are running on the local computer or a remote computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>pushd<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Push-Location<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Adds the current location to the top of a location stack.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>pwd<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Get-Location<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets information about the current working location or a location stack.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>r<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Invoke-History<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Runs commands from the session history.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rbp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-PSBreakpoint<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes breakpoints from the current console.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rcjb<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Receive-Job<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets the results of the Windows PowerShell background jobs in the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rcsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Receive-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Gets results of commands in disconnected sessions.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rd<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rdr<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-PSDrive<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes temporary Windows PowerShell drives and disconnects mapped network drives.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ren<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Rename-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Renames an item in a Windows PowerShell provider namespace.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>ri<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"\ntop\">  <\/p>\n<p>rjb<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Job<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes a Windows PowerShell background job.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rm<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rmdir<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes files and folders.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rmo<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Module<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Removes modules from the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rni<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Rename-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Renames an item in a Windows PowerShell provider namespace.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rnp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Rename-ItemProperty<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Renames a property of an item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-ItemProperty<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes the property and its value from an item.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rsn<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-PSSession<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Closes one or more Windows PowerShell sessions (PSSessions).<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rsnp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-PSSnapin<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Removes Windows PowerShell snap-ins from the current session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rujb<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Resume-Job<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Restarts a suspended job<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-Variable<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes a variable and its value.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rvpa<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Resolve-Path<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Resolves the wildcard characters in a path, and displays the path contents.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>rwmi<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Remove-WMIObject<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Deletes an instance of an existing Windows Management Instrumentation (WMI) class.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>sajb<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Start-Job<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Starts a Windows PowerShell background job.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>sal<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-Alias<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates or changes an alias (alternate name) for a cmdlet or other command element in the current Windows PowerShell session.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>saps<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Start-Process<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Starts one or more processes on the local computer.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>sasv<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Start-Service<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Starts one or more stopped services.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>sbp<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-PSBreakpoint<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sets a breakpoint on a line, command, or variable.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>sc<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-Content<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Replaces the contents of a file with contents that you specify.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>select<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Select-Object<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Selects objects or object properties.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>set<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-Variable<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Sets the value of a variable. Creates the variable if one with the requested name does not exist.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>shcm<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Show-Command<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Creates Windows PowerShell commands in a graphical command window.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"67\" valign=\"top\">\n<p>si<\/p>\n<\/td>\n<td width=\"180\" valign=\"top\">\n<p>Set-Item<\/p>\n<\/td>\n<td width=\"391\" valign=\"top\">\n<p>Changes the value of an item to the valu<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>Summary: Ed Wilson, Microsoft Scripting Guy, provides a table of basic Windows PowerShell commands. Microsoft Scripting Guy, Ed Wilson, is here. Some questions are simply confusing, and other questions can be misleading, or even wrong. What do I mean? Well, I recently received a question from a person who wanted to know how to &ldquo;use [&hellip;]<\/p>\n","protected":false},"author":596,"featured_media":87096,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[589,51,3,45],"class_list":["post-5621","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-scripting","tag-fundamentals","tag-getting-started","tag-scripting-guy","tag-windows-powershell"],"acf":[],"blog_post_summary":"<p>Summary: Ed Wilson, Microsoft Scripting Guy, provides a table of basic Windows PowerShell commands. Microsoft Scripting Guy, Ed Wilson, is here. Some questions are simply confusing, and other questions can be misleading, or even wrong. What do I mean? Well, I recently received a question from a person who wanted to know how to &ldquo;use [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/posts\/5621","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/users\/596"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/comments?post=5621"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/posts\/5621\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/media\/87096"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/media?parent=5621"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/categories?post=5621"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/scripting\/wp-json\/wp\/v2\/tags?post=5621"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}