Search Results

4
votes

get file version in powershell

I prefer to install the PowerShell Community Extensions and just use the Get-FileVersionInfo function that it provides. Lik …
2
votes

How do I create a custom type in PowerShell for my scripts to use?

There is the concept of PSObject and Add-Member that you could use. $contact = New-Object PSObject $contact | Add-Member -memberType NoteProperty -name "First" -value "John" $conta …
7
votes

Equivalent of *Nix ‘which’ command in Powershell?

I usually just type: gcm notepad or gcm note* gcm is the default alias for Get-Command. On my system, gcm note* outputs: …
1
vote

Vim with Powershell

Interesting question - here is something else to add to the confusion. Without making any changes to my .vimrc file, if I then run the following commands in gvim: :set shell=powersh …
2
votes

Is PowerShell a strongly typed language?

It can be if you need it to be. Like so: [1] » [int]$x = 5 [2] » $x 5 [3] » $x = 'haha' Cannot convert value "haha" to type "System.Int32". Error: "Input string was not in a …
5
votes

PowerShell array initialization

Yet another alternative: for ($i = 0; $i -lt 5; $i++) { $arr += @($false) } This one works if $arr isn't defined yet. Some good posts on PowerShell an …