Showing results for May 2015 - Page 2 of 11 - Scripting Blog [archived]

May 28, 2015
0
0

PowerTip: Force Time Resync with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to force a time resynchronization.  How can I use Windows PowerShell to force a time resynchronization?  Use the W32tm /resync /force command.            Note This command requires elevated rights.

Scripting Guy!Windows PowerShellPowerTip
May 28, 2015
0
0

PowerShell Time Sync: Error Handling in Parallel in Workflows

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Rudolf Vesely talks about error handling in workflows and repair actions. Microsoft Scripting Guy, Ed Wilson, is here. Today is Part 2 of a 3-part series written by guest blogger Rudolf Vesely. Read yesterday’s post to catch up and to learn more about Rudolf: PowerShell Time Sync: Get and Evaluate Synchronization State...

Scripting Guy!Windows PowerShellguest blogger
May 27, 2015
0
0

PowerTip: Use PowerShell to Find Time Service Status

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find the status of the time service.  How can I use Windows PowerShell to find the status of the time service on my local computer?  If all you are looking for is the status, use the W32tm command with the /query and /status switches: w32tm /query /status

Scripting Guy!Windows PowerShellPowerTip
May 27, 2015
0
0

PowerShell Time Sync: Get and Evaluate Synchronization State

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Rudolf Vesely, shows how to evaluate time synchronization. Microsoft Scripting Guy, Ed Wilson, is here. Today is day 1 of a 3-part series by Rudolf Vesely. Here, Rudolf tells us about himself: I work as a lead cloud architect in Tieto Productivity Cloud (TPC) at Tieto Corporation. I am a blogger on the Technology Stron...

Scripting Guy!Windows PowerShellguest blogger
May 26, 2015
0
1

PowerTip: Pad String to Left with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to pad a string to the left.  How can I use a specific Unicode character with Windows PowerShell to pad a string to the left so that the entire            string is a certain length?  Use the PadLeft method from the String class. Specify the length of the ne...

Scripting Guy!Windows PowerShellPowerTip