queries wmi filter.txt

Upload: victor-guerra

Post on 09-Oct-2015

26 views

Category:

Documents


0 download

TRANSCRIPT

  • 5/19/2018 Queries WMI filter.txt

    1/3

    /* WMI FILTER*/

    /* Antigos filtros de resoluo de tela para o Windows 7 - No mais suportado 8/8.1 */

    /* Somente Win7 Monitor 16x10 *//* Aplica Wallpaper no Win7 com monitor wide 16:10 *//* Namespace: root\CIMv2 */Query 1: Select * from Win32_OperatingSystem where Version like "6%"Query 2: SELECT * FROM Win32_DesktopMonitor WHERE (ScreenWidth=1280 AND ScreenHeight=800) OR (ScreenWidth=1280 AND ScreenHeight=768) OR (ScreenWidth=1440 AND Sc

    reenHeight=900) OR (ScreenWidth=1680 AND ScreenHeight=1050) OR (ScreenWidth=1920AND ScreenHeight=1200)

    /* Somente Win7 Monitor 16x9 *//* Aplica Wallpaper no Win7 com monitor wide 16:9 *//* Namespace: root\CIMv2 */Query 1: Select * from Win32_OperatingSystem where Version like "6%"Query 2: SELECT * FROM Win32_DesktopMonitor WHERE (ScreenWidth=1280 AND ScreenHeight=720) OR (ScreenWidth=1600 AND ScreenHeight=900) OR (ScreenWidth=1920 AND ScreenHeight=1080) OR (ScreenWidth=1360 AND ScreenHeight=768) OR (ScreenWidth=1366AND ScreenHeight=768)

    /* Somente Win7 Monitor 4x3 */

    /* Aplica Wallpaper no Win7 com monitor wide 4:3 *//* Namespace: root\CIMv2 */Query 1: Select * from Win32_OperatingSystem where Version like "6%"Query 2: SELECT * FROM Win32_DesktopMonitor WHERE (ScreenWidth=640 AND ScreenHeight=480) OR (ScreenWidth=800 AND ScreenHeight=600) OR (ScreenWidth=1024 AND ScreenHeight=768) OR (ScreenWidth=1152 AND ScreenHeight=864) OR (ScreenWidth=1280 AND ScreenHeight=960) OR (ScreenWidth=1280 AND ScreenHeight=1024) OR (ScreenWidth=1440 AND ScreenHeight=1050) OR (ScreenWidth=1600 AND ScreenHeight=1200)

    /* */

    /* Novos filtros de resoluo de tela para o Windows 7 e superiores */

    /* Win7 e superiores Monitor 16x10 *//* Aplica Wallpaper no Win7 e superiores com monitor wide 16:10 *//* Namespace: root\CIMv2 */Query 1: Select * from Win32_OperatingSystem where Version like "6%"Query 2: SELECT * FROM Win32_VideoController WHERE (CurrentHorizontalResolution=1280 AND CurrentVerticalResolution=800) OR (CurrentHorizontalResolution=1280 ANDCurrentVerticalResolution=768) OR (CurrentHorizontalResolution=1440 AND CurrentVerticalResolution=900) OR (CurrentHorizontalResolution=1680 AND CurrentVerticalResolution=1050) OR (CurrentHorizontalResolution=1920 AND CurrentVerticalResolution=1200)

    /* Win7 e superiores Monitor 16x9 *//* Aplica Wallpaper no Win7 e superiores com monitor wide 16:9 */

    /* Namespace: root\CIMv2 */Query 1: Select * from Win32_OperatingSystem where Version like "6%"Query 2: SELECT * FROM Win32_VideoController WHERE (CurrentHorizontalResolution=1280 AND CurrentVerticalResolution=720) OR (CurrentHorizontalResolution=1600 ANDCurrentVerticalResolution=900) OR (CurrentHorizontalResolution=1920 AND CurrentVerticalResolution=1080) OR (CurrentHorizontalResolution=1360 AND CurrentVerticalResolution=768) OR (CurrentHorizontalResolution=1366 AND CurrentVerticalResolution=768)

    /* Win7 e superiores Monitor 4x3 */

  • 5/19/2018 Queries WMI filter.txt

    2/3

    /* Aplica Wallpaper no Win7 e superiores com monitor 4:3 *//* Namespace: root\CIMv2 */Query 1: Select * from Win32_OperatingSystem where Version like "6%"Query 2: SELECT * FROM Win32_VideoController WHERE (CurrentHorizontalResolution=640 AND CurrentVerticalResolution=480) OR (CurrentHorizontalResolution=800 AND CurrentVerticalResolution=600) OR (CurrentHorizontalResolution=1024 AND CurrentVerticalResolution=768) OR (CurrentHorizontalResolution=1152 AND CurrentVerticalResolution=864) OR (CurrentHorizontalResolution=1280 AND CurrentVerticalResolution=960) OR (CurrentHorizontalResolution=1280 AND CurrentVerticalResolution=1024) OR (CurrentHorizontalResolution=1440 AND CurrentVerticalResolution=1050) OR (CurrentHorizontalResolution=1600 AND CurrentVerticalResolution=1200)

    /* */

  • 5/19/2018 Queries WMI filter.txt

    3/3