OneDrive – Wrong timezone

I noticed that the time and time format was wrong on all documents in my OneDrive online. Time and timezone is correct in the rest of Office 365 It can be fixed by doing this: In OneDrive click the Return to classic OneDrive in the lower left cornerClick on the setting icon in the upper right cornerClick … Read more

Extract MSI file

Right click on CMD and choose Run as administrator. Once you have the elevated CMD promt type: msiexec /a c:\testfile.msi /qb TARGETDIR=c:\temp\test Change path to MSI file and target path.

Find and delete Office temporary files

When you op an Office document from a file share a temporary file is created. Normally they are deleted automatic when the document is closed, but sometimes this does not happen. You can then end up with many temporary files that can take up a lot of space. Search with this string in the file … Read more

Hikvision iVMS-4200 error: hcnetsdk.dll [91]

Hikvision iVMS-4200 error: reconnecting error code hcnetsdk.dll [91] The operation is not supported by the channel You sometimes get this error in the “Main View” in your NVR. Here is how to fix it: In iVMS click on “Control Panel” and “System configuration” Click on Image and Uncheck the “Auto-change Stream Type” option Click “Save” … Read more

Sort deleted email items by “date deleted” in Outlook

Go to your Deleted items folder Click on “View” and “View Settings” Click on “Columns” Choose “Date/Time fields”, select “Modified” and click on Add Move “Modified” to the top and click on “OK” Click on “Sort” Select “Date/Time fields”, select “Modified” and click on “OK” and “OK” again. Now you deleted emails are sorted by … Read more

Rename/remove characters from files and folders.

This is a powershell script that removes or renames special characters from files or folder. Very useful if you are going to upload a lot of files to SharePoint or OneDrive and you files contains illegal characters. $folder = ‘c:\mytest’ Get-ChildItem $folder -Recurse | ? {$_ -match ‘%|#|_’} | sort psiscontainer, {$_.fullname.length * –1} | … Read more