{"id":3976,"date":"2024-05-13T22:35:04","date_gmt":"2024-05-13T22:35:04","guid":{"rendered":"https:\/\/wiki.thomasandsofia.com\/?p=3976"},"modified":"2024-05-13T22:35:04","modified_gmt":"2024-05-13T22:35:04","slug":"powershell-cmdlets","status":"publish","type":"post","link":"https:\/\/wiki.thomasandsofia.com\/?p=3976","title":{"rendered":"Powershell: cmdlets"},"content":{"rendered":"<h1>cmdlets<\/h1>\n<p>Run these directly from the command line or use them in your scripts.<\/p>\n<h4><strong>New-Item<\/strong><\/h4>\n<p><strong>Creating Files<\/strong><\/p>\n<pre>C:\\path\\to\\somewhere\\&gt; New-Item -path C:\\scripts\\myfile.txt -type \"file\" -value \"Here is some text\"\r\nC:&gt;cd \\scripts\r\nC:&gt; ls\r\nMode     LastWriteTime  Length Name\r\n...\r\n-a---- MM\/DD\/YYYY H:mm      17 myfile.txt\r\n...\r\nC:\\scripts\\&gt; New-Item -path .\\myotherfile.txt -type \"file\" -value \"Here is some text\"\r\nC:&gt; ls\r\nMode     LastWriteTime Length Name\r\n...\r\n-a---- MM\/DD\/YYYY H:mm     17 myfile.txt\r\n-a---- MM\/DD\/YYYY H:mm     17 myotherfile.txt\r\n...<\/pre>\n<p><strong>Creating Folders<\/strong><\/p>\n<pre>C:\\scripts\\&gt; New-Item -path . -name myfolder -type \"directory\r\nC:&gt; ls\r\n...\r\nd----- blah blah  myfolder\r\n...<\/pre>\n<h4>Copy-Item<\/h4>\n<pre>C:&gt; Copy-Item &lt;C:\\path\\to\\source&gt; -destination &lt;C:\\path\\to\\destination&gt;<\/pre>\n<h4>Move-Item<\/h4>\n<pre>C:&gt; Move-Item -path &lt;\\path\\to\\source&gt; -destination &lt;\\path\\to\\destination&gt;<\/pre>\n<h4>Remove-Item<\/h4>\n<p>Delete a file\/folder\/item<\/p>\n<pre>C:&gt; Remove-Item &lt;C:\\path\\to\\source&gt;<\/pre>\n<h4>Rename-Item<\/h4>\n<pre>C:&gt; Rename-Item -path &lt;\\path\\to\\source&gt; -newname &lt;\\path\\to\\destination&gt;<\/pre>\n<h4>Test-Path<\/h4>\n<p>Check if a file\/folder exists. Returns True or False<\/p>\n<pre>C:&gt; Test-Path C:\\path\\to\\item\r\nTrue|False<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>cmdlets Run these directly from the command line or use them in your scripts. New-Item Creating Files C:\\path\\to\\somewhere\\&gt; New-Item -path C:\\scripts\\myfile.txt -type &#8220;file&#8221; -value &#8220;Here is some text&#8221; C:&gt;cd \\scripts C:&gt; ls Mode LastWriteTime Length Name &#8230; -a&#8212;- MM\/DD\/YYYY H:mm 17 myfile.txt &#8230; C:\\scripts\\&gt; New-Item -path .\\myotherfile.txt -type &#8220;file&#8221; -value &#8220;Here is some text&#8221; C:&gt; ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/wiki.thomasandsofia.com\/?p=3976\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-3976","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=\/wp\/v2\/posts\/3976","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3976"}],"version-history":[{"count":1,"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=\/wp\/v2\/posts\/3976\/revisions"}],"predecessor-version":[{"id":3977,"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=\/wp\/v2\/posts\/3976\/revisions\/3977"}],"wp:attachment":[{"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3976"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3976"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wiki.thomasandsofia.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3976"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}