8,330 questions
Try this .
http://eddiejackson.net/web_documents/Building_Forms_with_PowerShell_Part1.pdf
Or this.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello.
I wanna to run my windows for application with powershell is it possible?.
This is my code:
Add-Type -TypeDefinition @"
using System;
using System.Windows.Forms;
namespace Test1
{
public partial class Form1
{
public Form test = new Form();
public Padding a = new Padding();
public void Main(){
test.Text = "HEllo world";
test.Padding = a;
Console.WriteLine("Hello world!");
}
}
}
"@ -ReferencedAssemblies System.Windows.Forms
Thanks for help.