İşlemcinizin ve işletim sisteminizin 64 bit mi yoksa 32 bit mi olduğunu söyleyen basit bir komut satırı uygulaması yazdım.
Okuma örneği:
C:\bitchecker
The CPU is 64-bit and the OS is 32-bit
İstek başına, burada AutoIt ile yazılmış CLI seçeneğini kullanarak derlenen kaynak.
If @CPUARCH = "x86" Then
$CPUARCH = "32-bit"
Else
$CPUARCH = "64-bit"
EndIf
If @OSARCH = "x86" Then
$OSARCH = "32-bit"
Else
$OSARCH = "64-bit"
EndIf
ConsoleWrite("The CPU is " & $CPUARCH & " and the OS is " & $OSARCH)
Ve eğer CPU (-c) ve OS (-o) için anahtarlar istiyorsanız, bir örnek:
Dim $CPUARCH, $OSARCH
If @CPUARCH = "x86" Then
$CPUARCH = "32-bit"
Else
$CPUARCH = "64-bit"
EndIf
If @OSARCH = "x86" Then
$OSARCH = "32-bit"
Else
$OSARCH = "64-bit"
EndIf
If $CmdLine[0] = 0 Then
ConsoleWrite("The CPU is " & $CPUARCH & " and the OS is " & $OSARCH)
Else
Select
Case $CmdLine[1] = "-c"
ConsoleWrite($CPUARCH)
Case $CmdLine[1] = "-o"
ConsoleWrite($OSARCH)
Case Else
ConsoleWrite("The CPU is " & $CPUARCH & " and the OS is " & $OSARCH)
EndSelect
EndIf
systeminfo
listelememesi üzücü .