Step 1: Open "Sublime Text 2" editor
Step 2: Tools -> Build System -> New Build System
Step 3: New tab appears. Replace the content with the following lines.
{
"cmd": ["node", "$file", "$file_base_name"],
"working_dir": "${project_path:${folder}}",
"selector": "*.js"
}
Step 4: Save the file and rename it with "NodeJS.sublime-build".
Step 5: Select "Tools -> Build System -> NodeJS"
Step 6: Go to your source program and press "Ctrl-B" to run code.
I have a wide scope of interests in IT, which includes hyper-v private cloud, remote desktop services, server clustering, PKI, network security, routing & switching, enterprise network management, MPLS VPN on enterprise network etc. Started this blog for my quick reference and to share technical knowledge with our team members.
Saturday, February 27, 2016
Wednesday, February 3, 2016
Connect to WS2012 WSUS Internal Database
To connect to the Windows Internal Database (WID) WSUS, install SQL Management Studio and connect to the server using:
You may confirm the SQL instance name in red against the startup service description using services.msc.
As there is a constant error of "WSUS server is still processing a previous configuration change", this is what I need to execute on the database instance:
\\.\pipe\MICROSOFT##WID\tsql\query
You may confirm the SQL instance name in red against the startup service description using services.msc.
As there is a constant error of "WSUS server is still processing a previous configuration change", this is what I need to execute on the database instance:
USE SUSDB;
UPDATE tbSingletonData SET ResetStateMachineNeeded = 0
Labels:
windows server 2012,
WSUS
Subscribe to:
Posts (Atom)