Contents tagged with powershell
-
SFTP Using Powershell
https://stackoverflow.com/questions/38732025/upload-file-to-sftp-using-powershell
-
Using Powershell Behind a Proxy Server
http://woshub.com/using-powershell-behind-a-proxy/
-
User Powershell 7 in ISE
https://gist.github.com/adamdriscoll/ca01e7dcaf6fed5138ceb686e02ca0fd#file-ps7ise-ps1
This creates a "switch to" menu item in the Addons Menu. Then verify with:
$PSVersionTable more
-
Powershell Set Execution Policy
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7 more
-
Multithreading in Powershell
https://gallery.technet.microsoft.com/scriptcenter/Multi-threading-Powershell-d2c0e2e5 more
-
Sharepoint Set Site Collection Administrator with Powershell
$siteCollectionUrl = "<my site>"$site =new-object Microsoft.SharePoint.SPSite($siteCollectionUrl)$web = $site.RootWeb$primarAdministrator = $web.EnsureUser("domain\sp_admin")$site.Owner = $ … more
-
Powershell Redirection
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_redirection?view=powershell-7 more
-
Sharepoint Deployment with Powershell
https://collab365.community/general-powershell-script-to-wsp-deployment-and-activating/
-
How to Check Powershell Version
https://adamtheautomator.com/check-powershell-version/ more
-
Exporting Data with Powershell
https://www.sqlservercentral.com/articles/exporting-data-with-powershell