Virtualization is a technology that creates virtual versions of computer hardware such as servers, storage, and networks. This allows multiple operating systems to run on one physical machine, increasing flexibility and resource utilization. It's widely used in data centers and cloud computing to increase efficiency and scalability. Types include server, storage, and network virtualization. Server virtualization creates virtual versions of physical servers known as VMs which can run their own OS
August 10, 2017
How to change PowerShell terminal defaults size
The PowerShell terminal defaults to a width of 80 columns, but sometimes a user will need a larger or smaller display width
$pshost = Get-Host # Get the PowerShell Host.
$pswindow = $pshost.UI.RawUI # Get the PowerShell Host's UI.
$newsize = $pswindow.BufferSize # Get the UI's current Buffer Size.
$newsize.width = 200 # Set the new buffer's width to 200 columns.
$pswindow.buffersize = $newsize # Set the new Buffer Size as active.
$newsize = $pswindow.windowsize # Get the UI's current Window Size.
$newsize.width = 200 # Set the new Window Width to 200 columns.
$pswindow.windowsize = $newsize # Set the new Window Size as active.
Subscribe to:
Post Comments (Atom)
-
Today while working I engage with below error when trying to add a Virtual Media to UCS Server "cisco virtual media redirection is ...
-
Recovery Key Alarm This is A new alarm which triggered to prompt the administrator to back up the recovery key. https://docs.vmware.c...
-
Just look at the output from the list command from NSX CLI (NSX-T), this product is huge nsxt1> get version VMware NSX Software, Vers...
No comments:
Post a Comment