Jump to content

Username in Batch File?


SilverBulletUK

Recommended Posts

Hey guys,

Need your guidance yet again :wacko: ...!!

Im trying to make a batch file to make a folder named after the user who is logged onto the computer at the time.....

Little explanation......

@echo off
SYSINFO.BAT >> C:\Logs\***username here***\Output.txt
Exit

how could i set the variable needed to replace "***username here***" is this even possible, forgive me this is really simple but its late!!! :}

Does this make any sense?

Link to comment
Share on other sites


  • 2 weeks later...

This Makes A Folder Based On The Current Date

@echo off
cls
color F2
mode con: Cols=55 Lines=3
Title What Year Is It Test 2
SET D1=%date:~-4,10%
SET D2=%date:~7,-5%
SET D3=%date:~4,-8%
SET D4=%date:~0,-10%
echo.
@echo The Year Is %D1%
ping -n 3 127.0.0.1>nul
cls
echo.
@echo Today Date %D2%
ping -n 3 127.0.0.1>nul
cls
echo.
@echo The Month %D3%
ping -n 3 127.0.0.1>nul
cls
echo.
@echo The Day %D4%
ping -n 3 127.0.0.1>nul

if exist %D3%-%D2%-%D1% goto E1
if not exist %D3%-%D2%-%D1% goto W1

:W1
mkdir %D3%-%D2%-%D1%
echo.
echo Folder %D3%-%D2%-%D1% Was Made!
ping -n 3 127.0.0.1>nul
exit

:e1
echo.
echo Folder Was Already Made!
ping -n 3 127.0.0.1>nul

The Folder Named Would Be 02-07-2005 or The Day

It Was ran On

Adjust To your Needs

Edited by gunsmokingman
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...