Dalle on Twitter
Posts by
-
-
Recent Posts
Recent Comments
Archives
- March 2012
- January 2012
- December 2011
- November 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- June 2008
- April 2007
- June 2006
Categories
Deployment
PowerShell
Security
Tag Archives: gui
The TPM Status tool
I wrote this tool for my friend DXter a year ago or so.He did an presentation on bitlocker and wanted a tool that showsTPM Information from inside Windows and with an GUI. Now It’s a new year and I have … Continue reading
Move users the GUI way
I got an Excel sheet with Users thatI should move from OUs to an inactive OU. I’m not a fan of manual work and I like to make toolsfor others. So I made a Move Users tool. The script populates … Continue reading
Add Users to a Group–The GUI way
I wrote an little GUI app that will help Service desk add users to a group. No users in the group: The Application: The users: In this way they can take usernames from a Excel file and justpaste them into … Continue reading
Skapa grafisk program med hjälp av PowerShell
Hej, det var ett tag sedan jag skrev något här. Dock har jag inte varit helt oproduktiv när det gäller skript och PowerShell. Min senaste artikel om PowerShell och att skapa grafiska program med hjälp av PowerShell ligger nu ute … Continue reading
Automatic Bios update with PowerShell
I currently working with clients in an environment without any system that will update computers Bios automatically. So I have started to write a PowerShell script for this. It uses Windows Forms for the output and WMI for the information … Continue reading
Get MAC Address (The GUI version)
Updated version with ping control and with Windows forms. function Ping-Status { param ($mysrv) $pingstatus = Get-WmiObject -Query "SELECT StatusCode FROM win32_PingStatus WHERE ADDRESS = ‘$mysrv’" if ($pingstatus.StatusCode -eq 0) { $true } else { $false } } #Generated … Continue reading