2015-06-08 49 views
0

要設置配置文件的RSA加密,需要有一個對ASP.NET身份的授權訪問權限才能訪問RSA容器。我將它設置基於此https://msdn.microsoft.com/en-us/library/2w117ede%28v=vs.140%29.aspx在Powershell中獲取ASP.NET身份

說明書凡由包含以下創建identity.aspx文件:

<%@ Page Language="C#" %> 
<% 
Response.Write(System.Security.Principal.WindowsIdentity.GetCurrent().Name); 
%> 

這怎麼通過PowerShell的,而不是aspx文件來獲得?

+0

而非網頁(的.aspx),你應該公開爲通用處理器(ashx的)。 – mason

回答

0

PowerShell的語法解引用靜態成員比C#有一點不同,所以這將是:

[System.Security.Principal.WindowsIdentity]::GetCurrent().Name