IBM IMM (Integrated Management Module) Defult Username and Password

Setup: Fresh installation of IBM xServer Problem: After installation you want to update to latest firmware. Solution: Start C:\IBMToolsCenterSuite\run.bat and you need to login to IBM ToolsCenter Suite. Use local administrator user and password. If doesn’t work try to login on the machine as local administrator instead of domain user and pass. For remote connection […]

Read More

Retrieve passwords from IIS Application Pool with PowerShell remotely

Setup: Server with IIS installed and a remote computer with PowerShell Problem: IIS store the Application Pool Account password un-encrypted and is trivial to retrieve it. If you want to list all application pool accounts and their passwords use the following PowerShell command. You can even scan entire network/domain and make a list will all […]

Read More

Fix .NET error – There is no compatible TransportManager found for URI

Setup: Existing WCF service published with net.tcp bindings Problem: You receive this error There is no compatible TransportManager found for URI ‘net.tcp://WCFService/WCFService.svc’. This may be because that you have used an absolute address which points outside of the virtual application, or the binding settings of the endpoint do not match those that have been set […]

Read More

Get system information from WMI remotely with PowerShell script

Setup: Remote computer with WMI enabled and firewall open Problem: You want to collect various information remotely Solution: Copy this script and save it on the disk with .ps1 extension. eg. Get-ComputerDetails.ps1 Open PowerShell console and execute the script. Tip 1: For unattended execution save the credentials on the disk and load them at run-time. […]

Read More