Contents tagged with powershell
-
Send Email with Powershell
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.1 more
-
Transfer all OneDrive files to another user via PowerShell
https://gcits.com/knowledge-base/transfer-users-onedrive-files-another-user-via-powershell/ more
-
Connect to all Microsoft Office 365 Services using Powershell
https://docs.microsoft.com/en-us/microsoft-365/enterprise/connect-to-all-microsoft-365-services-in-a-single-windows-powershell-window?view=o365-worldwide more
-
Connect of Office 365 Mail (Exchange Online) with Powershell
https://lazyadmin.nl/powershell/connect-to-exchange-online-powershell/ more
-
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
-
Backing Up SQL Server Databases is Easier in PowerShell than T-SQL
https://www.sqlservercentral.com/articles/backing-up-sql-server-databases-is-easier-in-powershell-than-t-sql
-
Using PowerShell to Generate Logins, Server and Database Permissions
https://www.databasejournal.com/features/mssql/using-powershell-to-generate-logins-server-and-database-permissions.html more
-
PowerShell and Secure Strings with FTP
https://www.red-gate.com/simple-talk/sysadmin/powershell/powershell-and-secure-strings/
-
DBATools PowerShell Module for SQL Server
https://www.sqlshack.com/dbatools-powershell-module-for-sql-server/ more
-
Check Installed SMB Versions Using Powershell
From a powershell prompt type:
sc.exe qc lanmanworkstation
-
Automate Gathering SQL Server Information and Emailing CSV File
https://www.mssqltips.com/sqlservertip/6085/automate-gathering-sql-server-information-and-cpu-count/