1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages.id/windows/powershell.md
Reinhart Previano Koentjoro 2ee54b9032
pages.id/*: add and improve Indonesian translation (#11640)
* 7z, 7za, 7zr: update Indonesian translation

* common: imperative mood on Indonesian translation

* linux, osx, windows: imperative mood on Indonesian translation

* common, linux: add Indonesian translation

* powershell, pwsh: add Indonesian translation

* common: add Indonesian translation

* gcc: use standard file path template

* Update pages.id/common/gcc.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.id/common/gcc.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.id/common/7za.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.id/common/gcc.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update pages.id/common/7za.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update 7za.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update gcc.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* git-commit: update Indonesian translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-12-15 08:49:58 +07:00

37 lines
1.3 KiB
Markdown

# powershell
> Sebuah syel/shell dan bahasa pemrograman berbasis naskah/script yang dirancang untuk administrasi sistem komputer.
> Perintah ini merujuk kepada PowerShell versi 5.1 ke bawah (juga dikenal sebagai PowerShell bawaan Windows). Gunakan perintah `pwsh` daripada `powershell` untuk menggunakan PowerShell versi terkini (6.0 ke atas) yang tersedia lintas sistem operasi.
> Informasi lebih lanjut: <https://learn.microsoft.com/windows-server/administration/windows-commands/powershell>.
- Jalankan sesi PowerShell interaktif baru:
`powershell`
- Jalankan sesi interaktif tanpa memuat profil konfigurasi startup:
`powershell -NoProfile`
- Jalankan perintah secara spesifik:
`powershell -Command "{{echo 'powershell telah dieksekusi'}}"`
- Jalankan suatu naskah perintah/script PowerShell:
`powershell -File {{jalan/menuju/naskah.ps1}}`
- Jalankan suatu sesi dengan versi PowerShell tertentu:
`powershell -Version {{versi}}`
- Cegah sesi PowerShell dari keluar secara otomatis setelah menjalankan perintah startup:
`powershell -NoExit`
- Tentukan format data yang akan dimasukkan ke dalam PowerShell:
`powershell -InputFormat {{Text|XML}}`
- Tentukan format data yang ingin dikeluarkan dari perintah-perintah PowerShell:
`powershell -OutputFormat {{Text|XML}}`