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

Posted in GUI, PowerShell, security, Tools | Tagged , , | 2 Comments

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

Posted in PowerShell | Tagged , , , , | 1 Comment

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

Posted in GUI, PowerShell | Tagged , , | 1 Comment

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

Posted in PowerShell Blogs | Tagged , , | Leave a comment

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

Posted in PowerShell Blogs | Tagged , , , | 12 Comments

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

Posted in PowerShell Blogs | Tagged , , | Leave a comment