cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Run Desktop Flow as Admin? (third attempt)

This is my third post on this topic and no answer to this day.

 

I have built a flow out at least 7 different ways and it will not work.

 

I am a domain user on a domain PC.

I have local administrator rights.

Powershell ISE is set to open as an admin.

UAC is disabled.

Power Automate Desktop app is set to open as admin.

 

All I need is to have the ability to run a script that will add a domain user to a remote computer's local admin group.

I have 4 lines of PowerShell that get that done but there is no way to do it as Flow runs Powershell as a mortal user.

I have tried the following workarounds:

 

1. Launch Powershell ISE and copy paste the code using the Flow Desktop App. Fails since now ISE is running as admin.

2. Luanch a cmd session that calls on my PS1 script as admin. Can't do it.

3. Launch a bat file that calls my PS1 script as admin. Can't interact with the UI now because again, it's running as an admin.

4. Manually map the mouse to launch the PS1 script shortcut as admin. Same thing.

 

I need 4 lines of code executed. I can execute the code perfectly fine but Flow won't do it for me?

 

PS: I have to run this code a couple hundred times and the rest of my Flow itself automates the receiving the requests, parsing out asset tags and usernames and storing all that into variables so even though it simple I've literally automated it all.

1 ACCEPTED SOLUTION

Accepted Solutions
miketran13
Impactful Individual
Impactful Individual

Hi, 

I got your problems. This is what I have not tried yet but please try if you think it is possible.

 

Since you can't interact with the PowerShell script run as administrator, so you should try another way. First, you can write your params to a CSV / Text / Xml file in PAD. Then from your PowerShell script you will need to read the params from this file. When you finished with your PowerShell steps, you should write a status to a new file. Then from your PAD step, you can wait for that file is created and to finish your steps in PAD.

Untitled.png

Untitled1.png

 

That was my thoughts. I'm not sure it is applicable for you or not. But it worth a try I think 🙂 

 

Thanks and hope it can help you. 

Mike

---------------------------------

Did I answer your question? Please consider to Mark my post as a solution! to guide others

View solution in original post

10 REPLIES 10
miketran13
Impactful Individual
Impactful Individual

Hi there,

 

It's a tricky thing. Have you tried this yet? Ensure the PowerShell script itself can run as administrator. 

 

You can add this at the beginning of your powershell script. 

 

 

if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit }

 

 

Thanks and hope it can help you. 

Mike

---------------------------------

Did I answer your question? Please consider to Mark my post as a solution! to guide others

Anonymous
Not applicable

Hi,

 

Thanks for the tip. I did try this. 

What happens is no matter what you do or how you do it, if you have a process or UI that is now running as an elevated user, Flow will not interact with it. I can confirm because I can have 2 windows side by side, one normal and the other elevated and the elevated one gets completely ignored even by UI selector.

 

You try and send a mouse click on the elevated UI and it will fail.

 

But thanks for the input:) 

miketran13
Impactful Individual
Impactful Individual

Hi 

 

I see your problem and What I mean is that, you just need to make your PowerShell script you need to be run as an Administrator and you don't need to interact with it. Since, you can't interact with the PowerShell while running as an administrator so that you have to use another way to verify the status by creating a log file in the PowerShell script. So, your PowerShell script will be run as an administrator without interaction and it will write the status to a text file or csv file or whatever. 

Then your flow needs to wait for that file with the status. So, you just need to call your PowerShell script (with the elevated code inside) from Power Automate Desktop.

 

Screenshot 2021-01-27 060953.png

 

Thanks and hope it can help you. 

Mike

---------------------------------

Did I answer your question? Please consider to Mark my post as a solution! to guide others

Anonymous
Not applicable

@miketran13 

 

Thanks for getting back to me.

So I did just that.

 

I saved me PS1 script with the code snippet you posted earlier and ran Desktop Flow. It will run the PS1 as an administrator.

 

How do I go about:

1. Getting the output to then use as conditions in Flow?

2. I do need my 2 variables from Flow to be inputted or rather written to the PS1 script itself. I now cannot input anything if I do read-host as Flow will not interact with the UI as it's running as admin, but my script for sure needs two variables which are obtained by my previous steps in flow.

 

Here is a visual representation of my PS1:

ps11.PNG

 

I need $UserName and $ComputerName to be "filled out" with variables my flow currently already gathers and stores. Maybe have a way where my Desktop Flow can "write" to the PS1 to store the Variables before it executes the script?

 

 

Thanks again, this is further than I've ever gotten.

miketran13
Impactful Individual
Impactful Individual

Hi, 

I got your problems. This is what I have not tried yet but please try if you think it is possible.

 

Since you can't interact with the PowerShell script run as administrator, so you should try another way. First, you can write your params to a CSV / Text / Xml file in PAD. Then from your PowerShell script you will need to read the params from this file. When you finished with your PowerShell steps, you should write a status to a new file. Then from your PAD step, you can wait for that file is created and to finish your steps in PAD.

Untitled.png

Untitled1.png

 

That was my thoughts. I'm not sure it is applicable for you or not. But it worth a try I think 🙂 

 

Thanks and hope it can help you. 

Mike

---------------------------------

Did I answer your question? Please consider to Mark my post as a solution! to guide others

Anonymous
Not applicable

Thank you! I was finally able to put it all together. I ended up storing the two variables in a text file and them my main PS script called those variables with Get-Content. Works like a charm.

 

if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit }

Thanks for this, it seems to be a life-saver to me. However I have the exact same PS1 file on two Windows 10 machines, one machine executes this line without asking any question, but on the other machine when this line is executed the UAC asks the PowerShell to open as Administrator which stops the PAD from executing the PS1 file entirely.


mohammadtaha_0-1632992192337.png

 

What might be causing this?

I don't know what is causing it, but you can put a workaround.  I've done something similar where I loop looking for two images.  1 image (the interruption like this) performs an action, in this case Send Keys {Tab}{Enter}.

 

The other image (the right one) exits the loop and continues the flow.  So it looks like this:


  • Loop starting at 1 to index 9999
    • If %interruption_image% exists
      • Send Keys {Tab}{Enter}
      • Exit Loop
    • End IF
    • If %success_image% exists
      • Exit Loop
    • End IF
  • End Loop
  • Continue Process

Best of Luck!

 

----
If my post has answered your question, please thumbs up and mark this post as a solution.

I also offer paid consulting services at www.peakdigitran.com/appointments and you can find me on LinkedIn at https://www.linkedin.com/in/michael-annis-80903/,

Hi @Anonymous and @miketran13 , If I understand this thread correctly, I have the same issue what you faced as below. 

 

I have to run my PAD flow ( in unattended\attended mode ) using local administrator privileges, because with normal user , I can't be able to interact my UI elements and automation is not recognizing the UI elements with in the application. UAC has to be disabled otherwise it is interrupting for automation. 

 

could you please give me a clue , how can I call this PAD flow from Cloud flow and run it with PAD administrator ?

 

 

Were you able to find how to call a PAD flow as an administrator from Cloud flow? Could you please provide the solution here if you found it already. Thanks!

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,835)