{"id":2863,"date":"2025-04-17T14:17:21","date_gmt":"2025-04-17T14:17:21","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=2863"},"modified":"2025-04-17T14:17:23","modified_gmt":"2025-04-17T14:17:23","slug":"windows-powershell-basic-commands","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html","title":{"rendered":"Windows PowerShell Basic Commands Cheatsheet For You"},"content":{"rendered":"\n<p>It might look scary if you are just starting with Windows PowerShell!<\/p>\n\n\n\n<p>All BLACK SCREEN and Commands, Right?<\/p>\n\n\n\n<p>But don\u2019t worry!<\/p>\n\n\n\n<p>Once you know a few basic commands, it can be a powerful tool for speeding up and simplifying your daily tasks within seconds.<\/p>\n\n\n\n<p>This article will walk you through the most useful PowerShell commands every beginner should know. To simplify things, we will explain what each command does, why it\u2019s used, and how to use it with examples where needed so that you can try them out yourself.<\/p>\n\n\n\n<p>So, without wasting much time, let\u2019s dive in and make PowerShell your new tech buddy!<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/433\/locating-and-editing-host-file-in-windows.html\"><strong>A Guide To Locating &amp; Editing a Host File in Windows<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>20 Basic &amp; Useful PowerShell Commands For You To Know<\/strong><\/h2>\n\n\n\n<p><strong>1. Get-Help<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It shows you help info about a command.<\/p>\n\n\n\n<p><strong>Why use it: <\/strong>It is used to understand what a command does and how to use it.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Help Get-Process<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>2. Get-Command<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It helps you to list all available PowerShell commands.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you to explore commands or search for specific ones.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<p>For example, to find all commands related to <strong>\u2018services\u2019<\/strong>, use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Command<\/strong><br><strong>Get-Command *service*<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>3. Get-Service<\/strong><\/p>\n\n\n\n<p><strong>What it does: <\/strong>It displays all system services.<\/p>\n\n\n\n<p><strong>Why use it: <\/strong>It helps you check whether services are running or stopped.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<p>In this example, <strong>wuauserv<\/strong> refers to the Windows Update service. This command helps you check whether the update service is running properly on your system.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Service<\/strong><br><strong>Get-Service -Name wuauserv<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>4. Start-Service \/ Stop-Service<\/strong><\/p>\n\n\n\n<p><strong>What it does: <\/strong>It starts or stops a service.<\/p>\n\n\n\n<p><strong>Why use it: <\/strong>It helps you to manage system services.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Start-Service -Name wuauserv<\/strong><br><strong>Stop-Service -Name wuauserv<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>5. Get-Process<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It lists all running processes.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you to monitor or inspect processes.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<p>For example, if you want to check a specific one, like <strong>\u2018Notepad\u2019<\/strong>, if it\u2019s open:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Process<\/strong><br><strong>Get-Process -Name notepad<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/424\/find-location-of-windows-log-files.html\"><strong>How Can You Find The Location of the Windows Log Files?<\/strong><\/a><\/p><hr>\n\n\n\n<p><strong>6. Stop-Process<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It ends a running process.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> If you want to close unresponsive apps, use this command.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<p>For example, if <strong>\u2018Notepad\u2019<\/strong> is running and you want to close it, use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Stop-Process -Name notepad<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>7. Set-ExecutionPolicy<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It changes script execution permissions.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you to allow or restrict running scripts, which means you can control which scripts run.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<p>Here we are setting the policy to <strong>\u2018RemoteSigned\u2019<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Set-ExecutionPolicy RemoteSigned<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>8. Get-Location<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It shows you the current directory.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you to know where you are working.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Location<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>9. Set-Location (cd)<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It changes the working directory.<\/p>\n\n\n\n<p><strong>Why use it: <\/strong>With this command, you can move between folders.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Set-Location C:\\Users<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>10. Get-ChildItem (dir)<\/strong><\/p>\n\n\n\n<p><strong>What it does: <\/strong>It lists your files and folders.<\/p>\n\n\n\n<p><strong>Why use it: <\/strong>This command helps you to view directory contents.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-ChildItem<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/415\/how-to-launch-windows-iis-manager.html\"><strong>How to Launch Windows Internet Information (IIS) Manager?<\/strong><\/a><\/p><hr>\n\n\n\n<p><strong>11. Copy-Item<\/strong><\/p>\n\n\n\n<p><strong>What it does: <\/strong>It copies files or folders from one location to another.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> You can use this command when you want to create a backup, duplicate a file, or move data to a different folder or drive without deleting the original file.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Copy-Item C:\\File.txt D:\\Backup\\<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>12. Move-Item<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It moves files\/folders from one location to another or renames files\/folders.<\/p>\n\n\n\n<p><strong>Why use it: <\/strong>It helps you organize files by moving them into the right folders or renaming them without a mouse.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Move-Item C:\\File.txt D:\\Docs\\<\/strong><br><strong>Move-Item File.txt NewFile.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>13. Remove-Item<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It deletes files or folders from your system.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> You can use it to clean up unwanted files or folders, free up space, or remove outdated data.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Remove-Item C:\\OldFile.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>14. New-Item<\/strong><\/p>\n\n\n\n<p><strong>What it does: <\/strong>This command creates new files or folders in a specific location on your system.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you quickly create a blank file to edit later or create a new folder to organize your files without opening File Explorer.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>New-Item C:\\Test\\demo.txt -ItemType File<\/strong><br><strong>New-Item C:\\TestFolder -ItemType Directory<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>15. Clear-Host (cls)<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It clears everything currently visible in your PowerShell window, including previous commands, outputs, and any clutter on the screen.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> Sometimes, your screen is filled with too many lines, making it hard to focus. In that case, you can use this command.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Clear-Host<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/414\/how-to-update-sql-server-management-studio.html\"><strong>How to Update SQL Server Management Studio?<\/strong><\/a><\/p><hr>\n\n\n\n<p><strong>16. Get-History<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It shows you all the past commands that you have run.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you to review what commands you have run.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-History<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>17. Invoke-Command<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It runs one or more PowerShell commands or scripts inside a script block ({}) on your local or remote computer.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It\u2019s useful when you want to group multiple commands or when you need to run a command remotely without manually logging into another system.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<p>Here, we will find the current date and time, just like <strong>\u2018Get-Date\u2019<\/strong>, but it&#8217;s wrapped inside <strong>Invoke-Command<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Invoke-Command -ScriptBlock { Get-Date }<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>18. Out-File<\/strong><\/p>\n\n\n\n<p><strong>What it does: <\/strong>It saves the output of a command into a text file.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> When you run commands in PowerShell, the results are usually shown on the screen. But sometimes, you may want to save that output later, to share with someone or keep a log.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Process | Out-File C:\\processlist.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>19. Get-Content<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> It reads the contents of a file and displays it line by line.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> When you want to quickly check what\u2019s written inside a text file, log file, or any file with readable content, you can use this command.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Get-Content C:\\notes.txt<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>20. Test-Connection<\/strong><\/p>\n\n\n\n<p><strong>What it does:<\/strong> This command sends a series of test messages called <strong>\u2018pings\u2019<\/strong> to another computer, server, or website to check whether the system is reachable over the network.<\/p>\n\n\n\n<p><strong>Why use it:<\/strong> It helps you see if your computer can connect to another system, such as checking if the Internet is working or if a server is online and responding.<\/p>\n\n\n\n<p><strong>How to use:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Test-Connection google.com<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/394\/How-to-Check-Users-Logged-in-Remote-Desktop.html\"><strong>How to Check Users Logged in Remote Desktop?<\/strong><\/a><\/p><hr>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>And there you have it! These basic PowerShell commands are your first step into a much more powerful way of managing your Windows system. You can use them to check services, copy files, or just check if your internet is working.<\/p>\n\n\n\n<hr><p>We also suggest not to worry if you don\u2019t remember everything immediately. The more you use these commands, the more comfortable you will get. It might feel slightly different at first, but once you get the hang of it, you will wonder how you ever managed without it!<\/p><hr>\n\n\n\n<p>Happy scripting!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>It might look scary if you are just starting with Windows PowerShell! All BLACK SCREEN and Commands, Right? But don\u2019t worry! Once you know a few basic commands, it can be a powerful tool for speeding up and simplifying your daily tasks within seconds. This article will walk you through the most useful PowerShell commands [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-2863","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Windows PowerShell Basic Commands Cheatsheet For You<\/title>\n<meta name=\"description\" content=\"Are you new to PowerShell? Learn the top basic Windows PowerShell commands with simple explanations and examples, perfect for beginners.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows PowerShell Basic Commands Cheatsheet For You\" \/>\n<meta property=\"og:description\" content=\"Are you new to PowerShell? Learn the top basic Windows PowerShell commands with simple explanations and examples, perfect for beginners.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-17T14:17:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-17T14:17:23+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html\",\"name\":\"Windows PowerShell Basic Commands Cheatsheet For You\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-04-17T14:17:21+00:00\",\"dateModified\":\"2025-04-17T14:17:23+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Are you new to PowerShell? Learn the top basic Windows PowerShell commands with simple explanations and examples, perfect for beginners.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Windows PowerShell Basic Commands Cheatsheet For You","description":"Are you new to PowerShell? Learn the top basic Windows PowerShell commands with simple explanations and examples, perfect for beginners.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html","og_locale":"en_US","og_type":"article","og_title":"Windows PowerShell Basic Commands Cheatsheet For You","og_description":"Are you new to PowerShell? Learn the top basic Windows PowerShell commands with simple explanations and examples, perfect for beginners.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-04-17T14:17:21+00:00","article_modified_time":"2025-04-17T14:17:23+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html","name":"Windows PowerShell Basic Commands Cheatsheet For You","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-04-17T14:17:21+00:00","dateModified":"2025-04-17T14:17:23+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Are you new to PowerShell? Learn the top basic Windows PowerShell commands with simple explanations and examples, perfect for beginners.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/445\/windows-powershell-basic-commands.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2863"}],"version-history":[{"count":2,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2863\/revisions"}],"predecessor-version":[{"id":2866,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2863\/revisions\/2866"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}