2010. 10. 5. 06:00
닷넷에서는 포인터나 핸들을 나타내는데 사용하는 IntPtr 이라는 구조체가 있습니다.
(자세한 내용은 http://msdn.microsoft.com/ko-kr/library/system.intptr(VS.80).aspx)
32bit 운영체제 상에서 포인터는 4byte, 64bit에서는 8byte이므로
아래의 간단한 메소드를 이용하여 운영체제의 플랫폼을 확인할 수 있습니다.
if ([IntPtr]::Size -eq 8)
{
"This is 64Bit PlatForm"
}
else
{
"This is 32Bit PlatForm"
}
{
"This is 64Bit PlatForm"
}
else
{
"This is 32Bit PlatForm"
}
원본: http://vstarmanv.tistory.com/entry/플랫폼-구분6432bit
'Powershell > @우주인' 카테고리의 다른 글
PowerShell 에서 NULL 처리 (0) | 2010.10.26 |
---|---|
[MSSQL]WMI for SQL Management(3)-SqlServerAlias (0) | 2010.10.26 |
PowerShell Debug(Set-PSDebug) (0) | 2010.10.05 |
[MSSQL]WMI for SQL Management(2)-ClientNetworkProtocol (0) | 2010.10.05 |
Clip을 이용한 복사 (0) | 2010.09.15 |