CryptoJones icon

PFDirHelper

CryptoJones | PRO | 01/14/18 01:59:24 AM UTC | 0 ⭐ | 561 👁️ | Never ⏰ | []
VB.NET |

760 B

|

None

|

0 👍

/

0 👎

Module Module1
 
    Sub Main()
        'Binary at http://atbash.blob.core.windows.net/downloads/PFDirHelper.exe
        'Dim DefaultPath As String
 
        If Environment.Is64BitOperatingSystem Then
            Console.WriteLine("I am a 64-bit Operating Systems.")
        Else
            Console.WriteLine("I am not a 64-bit Operating Systems.")
        End If
 
        If Environment.Is64BitProcess Then
            Console.WriteLine("I am a 64-bit Process.")
        Else 
            Console.WriteLine("I am not a 64-bit Process.")
        End If
 
        Dim  fullPath = Environment.GetEnvironmentVariable("ProgramFiles")
 
        Console.WriteLine("My program files directory is: " + fullPath)
 
        Console.ReadLine()
 
    End Sub
 
End Module

Comments

  •  icon
    01/01/70 12:00:00 AM UTC
    Plain Text |

    0 B

    |

    👍

    /

    👎