Advertisement
clothe

Fern Installer

Jan 4th, 2024 (edited)
1,225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.41 KB | None | 0 0
  1. # Fern Installer
  2.  
  3. Write-Host "Installing Fern..."
  4.  
  5. # Create Fern script
  6. @"
  7. @echo off
  8. cls
  9. title [v1] Fern Console
  10. prompt %CD% #
  11. "@ | Out-File -FilePath "fern.cmd" -Encoding ASCII
  12.  
  13. # Installing reset script
  14. Write-Host "Installing reset..."
  15.  
  16. @"
  17. @echo off
  18. cls
  19. prompt
  20. cmd
  21. "@ | Out-File -FilePath "reset.cmd" -Encoding ASCII
  22.  
  23. Write-Host "Done installing Fern."
  24. pause
  25. Clear-Host
  26. Start-Process "fern.cmd"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement