SOLVED: Problems installing KB3172614 – Error message – “The update is not applicable to your computer.” Posted on October 16, 2019October 16, 2019 by dpejic My environment is Windows 2012 R2 Server DC on which I can’t install KB3172614 because is needed for PAM Bastion trust domain. Command on Domain Controler netdom trust /? was not list parameter /enablePIMTrust which was needed. I first install April 2014 update KB 2919355 and after that, I can install KB3172614 update that solve…
Remote desktop connection, login field is black Posted on May 7, 2012 by dpejic When i use remote desktop connection login field is black and i cant see what i type. Problem is with default color shame that someone messed-up. KB906510 This MS KB Article describe this also. In the registry on location HKEY_USERS\.Default\Control Panel\Colors registry key you have lots of the colours were set to “0 0…
Stop a windows stucked/hung service Posted on February 16, 2012 by dpejic If you ever have trouble with a service being stuck in a ‘starting’ or ‘stopping’ state, you can run a couple of simple commands to kill the service. 1. Query the process To kill the service you have to know its PID or Process ID. To find this just type the following in at a…
create file with fixed/custom size from cmd in windows Posted on January 20, 2012 by dpejic C:\>fsutil file createnew test-file.txt 20971520 (20971520= 20MB)
Bulk import virtual machine in hyper-v, import virtual machine all at one step Posted on December 22, 2011 by dpejic Get-ChildItem e:\virtuals | Where-Object { $_.Attributes -band [System.IO.FileAttributes]::Directory } | ForEach-Object {Import-VM -path $_.FullName -ReuseIDs -Wait} You must have module for hyper-v for powershell… dowload it from this location http://pshyperv.codeplex.com/releases
Migrate/move share folder to another location/server with preserved share state and permission Posted on December 21, 2011 by dpejic To save only the existing share names and their permissions on Windows follow these steps. Note This procedure applies only to NetBIOS shares and not to Macintosh volumes. On the existing Windows installation that contains the share names and permissions that you want to save, start Registry Editor (Regedt32.exe). From the HKEY_LOCAL_MACHINE subtree, go to…
WinMgmt could not initialize the core parts;Windows couldn't log the RSoP (Resultant Set of Policies) session status- SOLVED. (Event Source: WinMgmt, Event ID:28; Event ID: 1090) Posted on November 29, 2011 by dpejic Event Type: Error Event Source: WinMgmt Event Category: None Event ID: 28 Date: 28.10.2011 Time: 11:33:42 User: N/A Computer: servername Description: WinMgmt could not initialize the core parts. This could be due to a badly installed version of WinMgmt, WinMgmt repository upgrade failure, insufficient disk space or insufficient memory. For more information, see Help and…
FIXED: Windows could not start because the following file is missing or corrupt: \WINDOWS\SYSTEM32\CONFIG\SYSTEM Posted on May 17, 2011 by dpejic Here are the symptoms. You try to start up your Windows 2000/XP (Vista too?) computer and you get a message, white text on black background: Windows could not start because the following file is missing or corrupt: \WINDOWS\SYSTEM32\CONFIG\SYSTEM or Windows could not start because the following file is missing or corrupt: \WINDOWS\SYSTEM32\CONFIG\SOFTWARE Sometimes, the message…
how to open pptx, docx in internet information service (IIS 2003) on web site Posted on March 30, 2011 by dpejic Yes, it's just an IIS setting: by default, it will only serve files for which the extension matches a defined MIME type. To allow .docx files to be downloaded, follow the steps: Open the IIS Microsoft Management Console (MMC), right-click the local computer name, and then click Properties. Click MIME Types. Click New. In the…
Installing and Uninstalling Roles and Features Using Ocsetup ( From Windows Core Install) Posted on March 28, 2011 by dpejic You can use Ocsetup.exe to install or remove roles, role services, and features on Server Core. The Ocsetup.exe syntax is case sensitive so you must type package names exactly as shown below (or exactly the same as in the output of the Oclist command). To install and uninstall a role, role service, or feature, you…
How can I add a user from the command line on win 2003 workgroup? Posted on February 21, 2011 by dpejic The simple answer is to use the net user <username> <password> /add (/domain) Example: 1. net user test1 Pa$word /add 2. net user test1 Pa$w0rd – this command only change password