Category: Windows Server 2012 R2

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...

Create EPM Hyperion Financial Reporting Export Folders

EPM Financial Reporting – Batch Export Folder Locations Note: If you have never launched the FRConfig utility or get an error message, do the following step first. Set EPM_ORACLE_INSTANCE path Edit E:\Oracle\Middleware\EPMSystem11R1\products\financialreporting\bin\setInstance.cmd in notepad. Add your EPM_ORACLE_INSTANCE path after the equal...

Ghost Images (.GHO) to Hyper-V (.vhd)

I’ve been playing around with Hyper-V. I found that I can convert my existing ghost images into Hyper-v disks by doing the following with Ghost 12. This will convert an existing ghost image to a new hyper-v disk image. ghost64.exe -clone,mode=restore,src=J:\ghostimg.gho,dst=e:\HYPERV\hyperv.vhd...

Tableau 10.3 VIP/Load Balancer Configuration with tabadmin

c:\Program Files\Tableau\Tableau Server\10.3\bin>tabadmin set gateway.public.host “tableautest.mytechdocs.com” — value for key gateway.public.host has been set c:\Program Files\Tableau\Tableau Server\10.3\bin>tabadmin set gateway.public.port “443” — value for key gateway.public.port has been set c:\Program Files\Tableau\Tableau Server\10.3\bin>tabadmin set gateway.trusted “192.168.1.13” — value for key gateway.trusted has been...

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...

7-zip Silent Install Script

I’m just sharing a little script I use to install 7zip in silent mode. pushd "\\epmfileserver.mydomain.com\share\utilities" 7z920-x64.msi /q INSTALLDIR="C:\Program Files\7-Zip" popd I’m not sure if any of you have ever used pushd and popd, but they are pretty handy. The pushd...