This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") | |
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | |
[void] [System.Windows.Forms.Application]::EnableVisualStyles() | |
$Form = New-Object system.Windows.Forms.Form | |
$Form.Size = New-Object System.Drawing.Size(250,300) | |
$Form.Text = "Tools" | |
$Icon = New-Object system.drawing.icon ("C:\Program Files (x86)\ASUS\ASUS Smart Gesture\DesktopManager\resource\WindowStoreApp.ico") | |
$Form.Icon = $Icon | |
$Form.AutoSize = $True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$xml = [xml]@' | |
<Users> | |
<User Name="Foo"> | |
<Friends> | |
<Friend Name="Bar"/> | |
</Friends> | |
</User> | |
<User Name="Foo2" /> | |
<User Name="Foo3"> | |
<Friends> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#PowerShell v3 | |
#02/06/2016 | |
Clear-Host | |
Sleep(1) | |
Write-Host " _______ ___ __ " -ForegroundColor DarkGreen | |
Sleep(1) | |
Write-Host "|#######| |###||##| " -ForegroundColor Green | |
Sleep(1) | |
Write-Host "|### ___| |###||__| " -ForegroundColor DarkGreen | |
Sleep(1) |
NewerOlder