Category: Uncategorized

Office 365 Outlook Online Archive Not Processing

With Powershell, run the following to remove any retention holds and also start the auto archive to online archive. Install-Module -Name ExchangeOnlineManagementImport-Module ExchangeOnlineManagementConnect-ExchangeOnline -UserPrincipalName adminuser@office365domain.comSet-Mailbox 'adminuser@office365domain.com' -RetentionHoldEnabled $falseStart-ManagedFolderAssistant -Identity 'username@office365domain.com' This was recommended by the help tool within the Exchange section...

Create ISO from ESD for Windows 10

From: https://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_install/instructions-create-a-bootable-iso-file-using-esd/d2768b51-221a-436e-af4e-d3b9118a8864?page=1&tm=1433519642487 Download http://1drv.ms/1HeQkW0 and extract it with 7zip Copy the esd file into the directory that is extracted Launch command prompt as admin (right click on menu and run as administrator) and then change to the extracted directory (C:\Users\username\Downloads\esd-decrypter-wimlib-4) run...

Change/Update EPM/Hyperion Shared Services Database Server

Change/Update EPM/Hyperion Shared Services Database Server STEP 0: Stop ALL EPM Components STEP 1: Migrated Databases and all objects from previous database server to the new database server. STEP 2: Execute Configtool on each server to reconfigure the Shared Services/Foundation database...

IBM InfoSphere Information Server DataStage 11.5 ODBC Connection Configuration for Microsoft SQL

[ad#ad-post] First, make sure to the latest ODBC drivers are installed from IBM Fix Central Note: The .odbc.ini file template defaults to an old driver. Make sure to use the latest driver. As of the time I updated this document, the...

SSH Key not working – Server refused our key

[ad#ad-post] I found this solution on https://adamwright.wordpress.com/2013/04/15/how-to-fix-server-refused-our-key-error-in-centos-6/ I received this error with Putty: “Server refused our key” SecureCRT gave me this error: “unable to authenticate using keys from the location “<ssh-agent>”. The error was: cannot find object or property.” [ad#ad-post] This appears to...

Notepad++ Silent Install Script

Similarly to the 7-zip silent install script, I also use the following script on my servers during their original build and patching: pushd "\\epmfileserver\share\utilities" npp.6.6.9.Installer.exe /S popd I’m not sure if any of you have ever used pushd and popd, but...