Jump to content

Using @ComputerName in a path to files


Recommended Posts

There's a piece of software I'm installing that, during the install, requires that files based on the computer name are selected from a specific path. Up until searching the forums, I was able to enter in the path name but not the computer name and file extension (the computer name always changes but the file path and file extension (in the example below .xxx) always stays the same).

After searching, I discovered the @ComputerName command and it's brief usage. I've been able to create a quick and dirty way to enter in the info (see below) but I think there's a "cleaner" way of accomplishing what I'm looking to do. (Note: For testing purposes, I'm sending the path text to a blank notepad document).

Global $PCName = @ComputerName
WinWaitActive("[CLASS:Notepad]")
Send("C:\path1\path2\" & @computername)
Send(".xxx")

Thanks!

CodingMonkey

Link to comment
Share on other sites

  • Developers

Define what you mean by cleaner? Isnt it clean enough using the macro value?

$file = "path\" & @computername & ".txt"

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

So if the software install is dependent on 4 different files, I would set those variables in the beginning of the script, correct? Something like:

$PCName = @ComputerName
$File1 = "C:\folder1\folder2\" & @computername & ".xx1"
$File2 = "C:\folder1\folder2\" & @computername & ".xx2"
$File3 = "C:\folder1\folder2\" & @computername & ".xx3"
$File4 = "C:\folder1\folder2\" & @computername & ".xx4"
WinWaitActive ("[CLASS:Notepad]")
Send("$file1")
Send("$file2")
Send("$file3")
Send("$file4")

Thanks, I think I'm finally starting to get the hang of this!

CodingMonkey

Link to comment
Share on other sites

  • Developers

To use a variable you need to skip the quotes around it:

Send($file1)
Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Also, you want to make sure your capitalization matches between variables

$File1

$file1

010101000110100001101001011100110010000001101001011100110010000

001101101011110010010000001110011011010010110011100100001

My Android cat and mouse game
https://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek

We're gonna need another Timmy!

Link to comment
Share on other sites

Also, you want to make sure your capitalization matches between variables

$File1

$file1

Other than for readability, there's no reason to check for the same capitalization of variable names in AutoIt. $Thisisavariablename is the same variable as $ThisISaVariableNAMe as far as AutoIt is concerned.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

  • 7 years later...

You coded:

$PCName = @ComputerName
$File1 = "C:\folder1\folder2\" & @computername & ".xx1"

You will want to rather use:

$File1 = "C:\folder1\folder2\" & $PCName & ".xx1"

Otherwise, what's the purpose of $PCName if it's not to save calling @computername multiple times?

Regards,

John Babbitt
Systems Administrator
Cutler Investment Group, LLC

Edited by CIG_Support
Link to comment
Share on other sites

You noticed that the thread is 7 years old and that the OP has been absent for over a year :)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

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
 Share

  • Recently Browsing   0 members

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