-2

This is what I need:

@echo off
title H1Z1 Launcher By Grim0
cd C:\Users\%ComputerName%\AppData\LocalLow\Daybreak Game Company\Digests\H1Z1-KingKill

That's the part that I tried but it didn't work.

%ComputerName% in path should be the user name of the current user.

How to get the current user name on the computer running the batch file instead of the computer name?

Mofi
  • 46,139
  • 17
  • 80
  • 143
Ido Shay
  • 3
  • 3

1 Answers1

2

Try this:

@echo off
title H1Z1 Launcher By Grim0
cd "%USERPROFILE%\AppData\LocalLow\Daybreak Game Company\Digests\H1Z1-KingKill"
man
  • 423
  • 1
  • 6
  • 11