Tag: Windows

Notepad is one of the most versatile applications you could use. You can open almost everything in it. You can write scripts in it, you can make web pages in it. You can do almost anything with notepad.  Make sure you know the quickest way to access it… if you hold the Windows Key + R, the run box will pop up. you can just type notepad into here and it will open for you.

Maybe everyone knows this already… I didn’t know it until I saw an engineer do it like 10 years ago, but I use it like 50 times a day now. It is a great place to take notes quickly.

 

 

Read more

You can start and stop windows services from command line using sc start or sc stop. You can even uninstall them with sc delete.

sc start myservice

sc stop myservice

sc delete myservice

You need to use the Service Name, not the display name

If you go to command line in windows, you can type sc to get a list of all available commands.

Read more

This post goes over how to change IPs on an existing Microsoft Failover Cluster. It also happens to go over some Oracle Failsafe stuff.

Identify New IPs you will be using

  • You will need four new IPs for the cluster
  • Node1
  • Node2
  • Microsoft Cluster
  • Role
  • You need your new subnet mask
  • You need your new Gateway IP
  • You need your new DNS server IPs
  • You may need two additional IPs for the Heartbeat network depending on if you are required to change those.

(more…)

Read more