Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
親のUACを継承せずに実行される子プロセスをアプリケーションに作成したいと思います。親は管理者として実行され、子プロセスは昇格なしの単純なユーザーとして実行されるようにします。誰かがこれを行う方法を知っていますか?
私はC#でコーディングしています。
ありがとう!
非常に簡単です:
string appWithoutElevation = @"c:\some foldre\app.exe"; Process.Start("explorer", appWithoutElevation);