Category Archives: Information Technology

Get installed SCOM Managementpacks

Use Powershell to get all installed Management Packs SCOM 2007 Get-ManagementPack | select displayname,version | export-csv c:\temp\mpk-2007.txt  SCOM 2012 Get-SCOMManagementPack | select displayname,version | export-csv c:\temp\mpk-2012.txt

Posted in Information Technology | Tagged | Comments Off on Get installed SCOM Managementpacks

SQL Performance Tuning Windows 2012

Performance Options IIS Settings for SQL-Management Console Network Card Nic Teaming Bios Setting Hyper-Threading off, SQL ist not yet really working with it

Posted in Information Technology | Tagged , | Comments Off on SQL Performance Tuning Windows 2012

DNS Reverslookup Nameserver remove hangup

Problem While cleaning up nameserver entries in reverse lookup scopes dns GUI shows a popup asking ” Do you want to delete the glue record” and hangs. Solution

Posted in Fix IT, Information Technology | Tagged , , | Comments Off on DNS Reverslookup Nameserver remove hangup

File open – Security Warning

Problem Starting an application shows a popup with a question whether to start the file or not as the source oft the file is Internet. The file itself is located on a server defined as safe place within the organization. … Continue reading

Posted in Fix IT, Information Technology | Tagged , | Comments Off on File open – Security Warning

SCOM 2012 Webconsole on IIS 8 shows unexpected error

I installed successful Systemcenter Operations Manager 2012 Webconsole on a Windows 2012 SP1 Server with IIS 8. The installation was done with https and CU3 was applied after the installation. Problem: The Webgui ended in an “An unexpected error has … Continue reading

Posted in Information Technology | Tagged , | Comments Off on SCOM 2012 Webconsole on IIS 8 shows unexpected error

Terminal Server HKCU Registry Keys contain old values

Problem: Some Registry keys in HKCU change back to an old value Reason: Long ago an installation was not correct terminated with “change user /execute”. So settings stayed in Registry as Master. (Shadow) Solution: Check HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\Install\Software or HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Windows … Continue reading

Posted in Fix IT, Information Technology | Tagged , , | Comments Off on Terminal Server HKCU Registry Keys contain old values

SQL Security : Restore User Mapping Database & SQL Management relation

To detect orphaned users, execute the following Transact-SQL statements per database: USE <database_name>;GO;sp_change_users_login @Action=’Report’;GO; Possible Response The output lists the users and corresponding security identifiers (SID) in the current database that are not linked to any SQL Server login. For … Continue reading

Posted in Fix IT, Information Technology | Tagged | Comments Off on SQL Security : Restore User Mapping Database & SQL Management relation