Skip to content

Instantly share code, notes, and snippets.

@AdamNaj
Created January 6, 2016 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdamNaj/2a878023d08ace2908ee to your computer and use it in GitHub Desktop.
Save AdamNaj/2a878023d08ace2908ee to your computer and use it in GitHub Desktop.
Variable tooltip test
$item = Get-Item master:\content\home
$items = Get-ChildItem master:\
$int = 1337
$float = 13.37
$bool = $true
$date = Get-Date
$string = "A string value"
$user = Get-User "sitecore\admin"
$table = @{"Name" = "Sitecore PowerShell"; "Date" = [datetime]::Now}
$list = @("Sitecore","PowerShell", [datetime]::now)
$ordered = [ordered]@{"First" = 1; "Second" = "b"}
$obj = [pscustomobject]@{"Name" = "Sitecore PowerShell"; "Current Release" = 4}
$objs = [pscustomobject]@{"Name" = "Michael"; "Age" = 32}, [pscustomobject]@{"Name" = "Adam"; "Age" = 40}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment