如果我啓動一個提升的powershell會話,我想在我的配置文件中包含一些內容,比如連接到映射的網絡驅動器,以及作爲額外的改變提示的顏色讓我想起我的真棒提升的力量。在運行提升的會話時加載不同的PowerShell配置文件有什麼技巧
如果我創建一個模塊#Requires -RunAsAdministrator
在它的前面,然後將此行添加到我的profile.ps1文件
Import-Module ($PSScripts + "elevated.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;
是否有檢測當前會話是否升高與否的方法嗎?