Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
1

Javascript to get my machine's name

Community Beginner ,
Apr 15, 2020 Apr 15, 2020

Hello,

 

I'm trying to use javascript to get my machine's name: "FSMACLT31",

Screen Shot 2020-04-16 at 2.51.09 PM.pngexpand image

 

So far, the closest I could get to is the below:

Screen Shot 2020-04-16 at 2.48.56 PM.pngexpand image

 

Is there another magic word instead of "HOME" would do the trick? 

Thanks heaps for your help!

TOPICS
Scripting
18.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Apr 16, 2020 Apr 16, 2020

Hi SychevKA,

"computername" would only work on Windows, I think.

 

Unfortunately a lot of the old InDesign Scripting Forum is missing.

In 2011 there was a thread about this issue where someone, I think it was John Hawkinson, answered the question like this:

 

 

if (File.fs == "Windows" ) {
	var myUserName  = $.getenv('username');
	var mySysName  = $.getenv('computername');
	}

else if (File.fs == "Macintosh") {
		   var myUserName  = $.getenv('USER');
		   var mySysName  = app.doScript('do shell
...
Translate
Participant ,
Apr 16, 2020 Apr 16, 2020

alert($.getenv('computername'))

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 16, 2020 Apr 16, 2020

Hi SychevKA,

"computername" would only work on Windows, I think.

 

Unfortunately a lot of the old InDesign Scripting Forum is missing.

In 2011 there was a thread about this issue where someone, I think it was John Hawkinson, answered the question like this:

 

 

if (File.fs == "Windows" ) {
	var myUserName  = $.getenv('username');
	var mySysName  = $.getenv('computername');
	}

else if (File.fs == "Macintosh") {
		   var myUserName  = $.getenv('USER');
		   var mySysName  = app.doScript('do shell script "hostname"', ScriptLanguage.APPLESCRIPT_LANGUAGE);
	}

$.writeln( myUserName +"\r"+ mySysName );

 

 

Also see into this related thread that is still available:

 

$.getenv() on Mac
Jump_Over, Jan 17, 2017

https://community.adobe.com/t5/indesign/getenv-on-mac/td-p/8848527

 

Regards,
Uwe Laubender

( ACP )

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Apr 16, 2020 Apr 16, 2020
LATEST
var mySysName  = app.doScript('do shell script "hostname"', ScriptLanguage.APPLESCRIPT_LANGUAGE);

 

Awesome, this is exactly what I am after.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines