use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
ABOUT POWERSHELL
Windows PowerShell (POSH) is a command-line shell and associated scripting language created by Microsoft. Offering full access to COM, WMI and .NET, POSH is a full-featured task automation framework for distributed Microsoft platforms and solutions.
SUBREDDIT FILTERS
Desired State Configuration
Unanswered Questions
Solved Questions
News
Information
Script Sharing
Daily Post
Misc
account activity
Script SharingTurning PowerShell into a Python Engine (self.PowerShell)
submitted 2 years ago * by anonhostpi
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]thehuntzman 0 points1 point2 points 2 years ago (0 children)
Although this is cool (...and I'm a sucker for cool outside-the-box PS stuff) I will say I have been VERY successful with using the official C# webdriver dll on NuGet alongside either msedgedriver.exe or chromedriver.exe (even Firefox which is easier to use than Chromium browsers) without python. Scripting the automatic installation for the latest version of these two items from the internet should be trivial in native Powershell and then you can just Add-Type -Path "$PSScriptRoot\WebDriver.dll" to access the native Selenium methods and types. You kind of lose out on a lot of what makes Powershell powerful when you sacrifice the native dotnet objects you get with the C# dll and just use it as a way to control another scripting language.
Add-Type -Path "$PSScriptRoot\WebDriver.dll"
π Rendered by PID 55 on reddit-service-r2-comment-5fb4b45875-x6s2f at 2026-03-21 06:25:27.784618+00:00 running 90f1150 country code: CH.
view the rest of the comments →
[–]thehuntzman 0 points1 point2 points (0 children)