Posts Categorized: Windows Administration

Syncing Scheduled Tasks with Powershell

Posted by & filed under Windows Administration.

The following script will allow you to sync scheduled tasks to a local server from a remote one.  You can modify the source and target folders, and that’s good because this script will wipe out the target folder (the one on the local host) every time it’s run.  Of course you could change that behavior… Read more »

Use PowerShell to Upload Files to SharePoint 2010

Posted by & filed under Tech Support, Windows Administration.

The following powershell functions can be loaded and then called like this “UploadToLibrary $filename $siteURL $listname” This script was hacked out of the “FCI SharePoint Upload Powershell script” available on TechNet. I removed the portions responsible for modifying source files, migrating file properties, etc so I could use these functions to easily upload files from… Read more »

Automating Windows Password Changes in PowerShell

Posted by & filed under Windows Administration.

Automating Windows Password Changes in PowerShell Many organizations have a need for scheduled, automated windows local admin password rotations with reporting functions. The following PowerShell script covers these requirements. It uses a CSV to input the computers which need a password change. This could easily be changed to pipe directly from AD, some database, or… Read more »