Code Monkey home page Code Monkey logo

batch_files's Introduction

batch_files1

Batch(BAT/CMD) code for lowering screen brightness:

Powershell "(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1, 8)"
Powershell "(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1, 8)"

PowerShell(PwSh) code for lowering screen brightness:

(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1, 8)
(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1, 8)
(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1, 8)

My PowerShell User Profile Script:

### Profile Folder Path: "%USERPROFILE%\Documents\WindowsPowerShell"
### Profile Directory Path: "%USERPROFILE%\Documents\WindowsPowerShell"
### Profile File Path: "%USERPROFILE%\Documents\WindowsPowerShell\profile.ps1"
### This Script's Path: "%USERPROFILE%\Documents\WindowsPowerShell\profile.ps1"
### Profile Script Path: "%USERPROFILE%\Documents\WindowsPowerShell\profile.ps1"

function Create-User-Profile-Script {
    if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
    if (!(Test-Path -Path $PROFILE.AllUsersCurrentHost)) { New-Item -Type File -Path $PROFILE.AllUsersCurrentHost -Force }
    if (!(Test-Path -Path $PROFILE.CurrentUserAllHosts)) { New-Item -Type File -Path $PROFILE.CurrentUserAllHosts -Force }
    if (!(Test-Path -Path $PROFILE.AllUsersAllHosts)) { New-Item -Type File -Path $PROFILE.AllUsersAllHosts -Force }
}

function Remove-EmptyDirectories0 {
    param([string]$path)
    Get-ChildItem "$Path" -Recurse -Force -Directory | Sort-Object -Property FullName -Descending | Where-Object { $($_ | Get-ChildItem -Force | Select-Object -First 1).Count -eq 0 } | Remove-Item -Verbose
}
Remove-EmptyDirectories0 -path "$ENV:APPDATA"
Remove-EmptyDirectories0 -path "$ENV:LOCALAPPDATA"
Remove-EmptyDirectories0 -path "$env:UserProfile\Documents"

function Clear-History0 {
    Clear-History; Remove-Item -Force (Get-PSReadlineOption).HistorySavePath; Clear-History; CLS; Exit;
}
### Profile Folder Path: "%USERPROFILE%\Documents\WindowsPowerShell"
### Profile Directory Path: "%USERPROFILE%\Documents\WindowsPowerShell"
### Profile File Path: "%USERPROFILE%\Documents\WindowsPowerShell\profile.ps1"
### This Script's Path: "%USERPROFILE%\Documents\WindowsPowerShell\profile.ps1"
### Profile Script Path: "%USERPROFILE%\Documents\WindowsPowerShell\profile.ps1"

function Create-User-Profile-Script {
    if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
    if (!(Test-Path -Path $PROFILE.AllUsersCurrentHost)) { New-Item -Type File -Path $PROFILE.AllUsersCurrentHost -Force }
    if (!(Test-Path -Path $PROFILE.CurrentUserAllHosts)) { New-Item -Type File -Path $PROFILE.CurrentUserAllHosts -Force }
    if (!(Test-Path -Path $PROFILE.AllUsersAllHosts)) { New-Item -Type File -Path $PROFILE.AllUsersAllHosts -Force }
}

function Remove-EmptyDirectories0 {
    param([string]$path)
    Get-ChildItem "$Path" -Recurse -Force -Directory | Sort-Object -Property FullName -Descending | Where-Object { $($_ | Get-ChildItem -Force | Select-Object -First 1).Count -eq 0 } | Remove-Item -Verbose
}
Remove-EmptyDirectories0 -path "$ENV:APPDATA"
Remove-EmptyDirectories0 -path "$ENV:LOCALAPPDATA"
Remove-EmptyDirectories0 -path "$env:UserProfile\Documents"

function Clear-History0 {
    Clear-History; Remove-Item -Force (Get-PSReadlineOption).HistorySavePath; Clear-History; CLS; Exit;
}

batch_files's People

Contributors

vivek1986 avatar

Watchers

 avatar

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.