Skip to content

xiongjia/ps.uia

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

PS.UIA

PS.UIA = PowerShell + MS UIAutomation
It's a pure Powershell script module help you access the MS UIAutomation in Powershell.

How to use

(I am still working on the document and samples. At this time, you can check a simple sample in the sample folder.)

Installation

Option 1: copy the "ps.uia" folder to your Powershell module folder.

git clone https://github.com/xiongjia/ps.uia.git 
cd .\ps.uia 
$myPSModulePath = [System.Environment]::GetFolderPath("mydocuments") + "\WindowsPowerShell\Modules" 
Copy-Item .\ps.uia $myPSModulePath\ps.uia -Recurse 

Option 2: Add the project root path to your $env:PSModulePath environment.

git clone https://github.com/xiongjia/ps.uia.git 
cd .\ps.uia 
$env:PSModulePath = $env:PSModulePath + ";" + $pwd.Path + ";"

About

A pure Powershell script module help you access the MS UIAutomation API in Powershell.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published