Digital Signature error for Mac OS X Updates

Issue: When attempting to install the EFI Firmware Update for MacBook Pro, the update would attempt to install but fail with the message: An error has occurred The digital signature on MacBook Pro EFI Firmware Update is missing or is invalid. The update may have been...

Windows Scripting – Output date in user configured format

set thedate=%date:~6,4%-%date:~3,2%-%date:~0,2% set thetime=%time:~0,2%%time:~3,2% For Example: =%date:~6,4% Outputs the date, then takes 4 characters from the 6th Character. Depending on location: Date will show DD-MM-YYYY Sp: %date:~6,4% = YYYY %date:~3,2% = MM...

Robocopy with logs

set thedate=%date:~6,4%-%date:~3,2%-%date:~0,2% set thetime=%time:~0,2%%time:~3,2% set thelog=RoboCopyReport-%thedate%_%thetime%.txt set source=I:\ set destination=Y:\ robocopy %source% %destination% /E /ZB /DCOPY:T /COPYALL /R:1 /W:1 /V /TEE /XD $Recycle.bin /XD...