Home » Articles posted by Jeevan Bobba (Page 6)

Useful Windows Command Prompt Tricks

Useful Windows Command Prompt Tricks 1. Command History Using this command, you can track down your command history. This will turn out to be useful when...

How To Convert Text Into Audio

How To Convert Text Into Audio STEP 1: Open Notepad. Press Win+R and type Notepad and Press Enter. STEP 2: Now, Copy following program and paste it in Notepad Dim message, sapi message...

Linux Directory Structure

Overview   Everything in Linux can be reduced to a file. Partitions are associated with files such as /dev/hda1. Hardware components are associated with files...

Power off multiple VM’s

 Connect to Vcenter Connect-viserver vc.abc.com Stop-VM -VM (gc C:\Temp\serverlist.txt)  -Confirm:$false

How to display function definition / code in powershell

If the function name contains a hyphen (eg. test-computername): ${function:test-Computername} Alternatively: (Get-Command test-Computername).Definition Or cat function:show-list To export function to text file cat function:test-computername >c:\temp\function