Search This Blog

Batch File for Checking OS Architecture Type

@echo off
echo Detecting OS processor type

if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto 64BIT
echo 32-bit OS
REM Run 32-bit executable
goto END

:64BIT
echo 64-bit OS
REM Run 62-bit executable

:END

Batch File for Checking OS Architecture Type

@echo off
echo Detecting OS processor type

if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto 64BIT
echo 32-bit OS
REM Run 32-bit executable
goto END
:64BIT
echo 64-bit OS
REM Run 62-bit executable
:END

Use WinSCP to Transfer Files in vCSA 6.7

This is a quick update on my previous post “ Use WinSCP to Transfer Files in vCSA 6.5 ”. When I try the same SFTP server setting in vCSA 6.7...