GithubHelp home page GithubHelp logo

sconstantinou / sysinfo Goto Github PK

View Code? Open in Web Editor NEW
48.0 48.0 7.0 385 KB

PowerShell Module to get local and remote system information

License: MIT License

PowerShell 100.00%
powershell powershell-adminscripts powershell-cmdlets powershell-gallery powershell-module powershell-modules powershell-script powershell-scripts

sysinfo's People

Contributors

sconstantinou avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

sysinfo's Issues

Get-FileSystemFlagsEx should return more then one value

Hi!

because FileSystemFlagsEx is an Flag Array it should return more tan one value

My CDromDrive returns an FileSystemFlagsEx value of 17301509.
So it should return Get-FileSystemFlagsEx Function should return the following values:

Case Sensitive Search
Unicode On Disk
Read Only Volume

My Function do it like so:

Function Get-FileSystemFlagsEx {

    param ([uint32]$Number)

    if ($Number -ne 0){
        switch ($Number){
            {$Number -band 1} {'Case Sensitive Search'}
            {$Number -band 2} {'Case Preserved Names'}
            {$Number -band 4} {'Unicode On Disk'}
            {$Number -band 8} {'Persistent ACLs'}
            {$Number -band 16} {'File Compression'}
            {$Number -band 32} {'Volume Quotas'}
            {$Number -band 64} {'Supports Sparse Files'}
            {$Number -band 128} {'Supports Reparse Points'}
            {$Number -band 256} {'Supports Remote Storage'}
            {$Number -band 16384} {'Supports Long Names'}
            {$Number -band 32768} {'Volume Is Compressed'}
            {$Number -band 524289} {'Read Only Volume'}
            {$Number -band 65536} {'Supports Object IDS'}
            {$Number -band 131072} {'Supports Encryption'}
            {$Number -band 262144} {'Supports Named Streams'}
            default {"Invalid Code: $Number"}
        }
    }
}

Get-FileSystemFlagsEx 17301509

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.