mirror of
https://github.com/cmderdev/cmder.git
synced 2025-02-23 05:40:21 +08:00
5 lines
153 B
PowerShell
5 lines
153 B
PowerShell
|
# Autoinclude every .ps1 script in the autorun folder.
|
||
|
Get-ChildItem -Filter *.ps1 -File "$PSScriptRoot\autorun\" | ForEach-Object {
|
||
|
. $_.FullName
|
||
|
}
|