DOS batch file script to change IP address on Win7

Here is a simple DOS batch file to change system IP addres in a second.   1. Create a batch file on DOS prompt. –…

Continue Reading...

Cisco device output by Powershell script

Here is simple tip of How to retrieve Cisco device output by Powershell script   $User = "John" $pw = "ipBalance" $IP = "192.168.7.77" #List…

Continue Reading...

Ruby script sample – IP address

He is a sample Ruby scripting for IP address   for num in 1…10 ip = "1.1.1.#{num}" puts "#{ip}" end   Output> 1.1.1.1 1.1.1.2 1.1.1.3…

Continue Reading...

MS PowerShell Script Basic

1. Execution policy – Restricted – Unrestricted – RemoteSigned – AllSigned – Bypass   > get-executionpolicy Restricted   > set-executionpolicy unrestricted ; you must be…

Continue Reading...

Create a script file(batch) on linux

1. Create new file with editors, vi, pico, nano and so on. Linux_Srv> pico script_batch   2. Edit the file #! /bin/sh or #! /bin/bash…

Continue Reading...