昇格されたpowershellセッションを開始すると、マップされたネットワークドライブへの接続やボーナスの変更など、私の素晴らしい上昇力を思い出させるプロンプトの色。昇格したセッションを実行しているときに別のpowershellプロファイルを読み込む方法を教えてください
私は
Import-Module ($PSScripts + "elevated.ps1");
を目の前で#Requires -RunAsAdministrator
でモジュールを作成し、私のprofile.ps1ファイルに次の行を追加した場合、それは上昇のセッションのための仕事の罰金を行いますが、毎回、私は開きます通常のセッションでは、大きな赤色のエラーメッセージが表示されます。これは、最適ではないものです。
Import-Module : The script 'elevated.ps1' cannot be run because it contains a "#requires" statement for running as Administrator. The current Windows
PowerShell session is not running as Administrator. Start Windows PowerShell by using the Run as Administrator option, and then try running the script again.
At C:\Users\sdixon.MV\Documents\WindowsPowerShell\profile.ps1:22 char:3
+ Import-Module ($PSScripts + "elevated.ps1") -ErrorAction silentlyco ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : PermissionDenied: (elevated.ps1:String) [Import-Module], ScriptRequiresException
+ FullyQualifiedErrorId : ScriptRequiresElevation,Microsoft.PowerShell.Commands.ImportModuleCommand
これは私が使用してみた場合でも起こります:
Import-Module ($PSScripts + "elevated.ps1") -ErrorAction silentlycontinue;
は、現在のセッションが上昇しているかどうかを検出する方法はありますか?