Winamp & Shoutcast Forums

Winamp & Shoutcast Forums (http://forums.winamp.com/index.php)
-   NSIS Discussion (http://forums.winamp.com/forumdisplay.php?f=65)
-   -   Write in hosts (http://forums.winamp.com/showthread.php?t=387610)

alibabavl64 2nd December 2015 06:13

Write in hosts
 
I use this:

RequestExecutionLevel admin
......


......


ExecWait "$INSTDIR\x.bat"



In x.bat i have

IF EXIST %windir%\SYSTEM32\DRIVERS\ETC\HOSTS*.* ATTRIB +A -H -R -S %windir%\SYSTEM32\DRIVERS\ETC\HOSTS*.* > NUL

echo 127.0.0.1 something.com >> %windir%\system32\drivers\etc\hosts


....


I tried on XP. work OK.

In Win7-10/64 work random.
Most more didn't work.

I tried run installer (in installer exist command RequestExecutionLevel admin). never ask for rights.
I tried too RunAsAdministrator (rightclik)..

If i try "Runn as administrator on Total commander, go to hosts, F4-edit, made the change, save, work correctly.

Where is the misjate?

Thank you

Anders 2nd December 2015 12:38

There might be some 64-bit path issues here, try running Process Monitor from Sysinternals/Microsoft...

LoRd_MuldeR 2nd December 2015 18:23

What is the reason you are doing this from a separate BAT file rather than directly in NSIS?

http://nsis.sourceforge.net/Reading_...iting_in_files

http://nsis.sourceforge.net/Reference/SetFileAttributes

alibabavl64 2nd December 2015 20:05

Thank you, i'll try this.

But...what mean $4 from this commands?
(FileOpen $4...)

Anders 2nd December 2015 20:16

Quote:

Originally Posted by alibabavl64 (Post 3042636)
But...what mean $4 from this commands?
(FileOpen $4...)

$4 is the register (variable) where the file handle is stored.

You should read the entire documentation before asking basic questions like this.

LoRd_MuldeR 2nd December 2015 20:41

This command...
PHP Code:

FileOpen $"SomeFile.txt" 

...tries to open "SomeFile.txt", in append mode. And, if successful, it stores the file handle in user variable $4.

Use the IfErrors command in order to check whether file was opened successfully.

See here for details:
http://nsis.sourceforge.net/Docs/Chapter4.html#fileinst

alibabavl64 2nd December 2015 20:45

@Anders
1. I never sed "i am guru". If i was a guru maybe didn't ask.
2. My english is not so good.
3. http://nsis.sourceforge.net/Docs/Chapter4.html#fileinst
here wrote:
"FileOpen

user_var(handle output) filename openmode

Opens a file named "filename", and sets the handle output variable with the handle. The openmode should be one of "r" (read) "w" (write, all contents of file are destroyed) or "a" (append, meaning opened for both read and write, contents preserved). In all open modes, the file pointer is placed at the beginning of the file. If the file cannot be opened, the handle output is set to empty, and the error flag is set."

I understud that handle is automaticaly set but not specify if is a problemm if i use

Fileopen $0
Fileopen $1
Fileopen $5
Fileopen $1000

That $x is chosen by me and must only be the same in a sequence to the same file, or must choose respect another rule?

@Lord:
Thank you

LoRd_MuldeR 2nd December 2015 20:48

Quote:

Originally Posted by alibabavl64 (Post 3042642)
I understud that handle is automaticaly set but not specify if is a problemm if i use

Fileopen $0
Fileopen $1
Fileopen $5
Fileopen $1000

That $x is chosen by me and must only be the same in a sequence to the same file, or must choose respect another rule?

$x is the name of the variable where the result is stored!

NSIS provides the variables $0 to $9 as well as $R0 to $R9 by default. There is no $1000, but you can define your own variables.

Read the manual:
http://nsis.sourceforge.net/Docs/Cha...html#variables

alibabavl64 2nd December 2015 20:50

Thank you, Lord Mulder.

Thank you again, work fine!

alibabavl64 22nd February 2016 20:06

I understud that after write in "hosts" a command "ipconfig /flushdns" is mandatory.

Is possible directly or need something like "execdos" plugin?

Thank you.

Anders 22nd February 2016 20:41

Quote:

Originally Posted by alibabavl64 (Post 3050275)
I understud that after write in "hosts" a command "ipconfig /flushdns" is mandatory.

Is possible directly or need something like "execdos" plugin?

Thank you.

Try nsExec, it is part of the default NSIS install...

alibabavl64 23rd February 2016 07:58

thank you

alibabavl64 3rd November 2016 12:39

Hy, i need your help again.

I need write few lines in .....\etc\hosts.
If hosts exist, write without problems.
But i has an Win10 HOME EDITION and me myself see in \etc\ the file named "hosts" not exist.

1. Please how can verify first if exist (is correct
SetOutPath "$Windir\system32\drivers\etc"
SetFileAttributes "hosts" 0
FileOpen $0 "hosts" a
If errors ???(how create a file named "hosts"?)

Or exist another command for find the file?
Because i found somewhere "FileOpen $0 "hosts" a" will create a new file named hosts but to me not happend..
Run as admin is activated and installer was run "Run As Administrator"..
2. If Home Edition of Windows haven't this "hosts" file, IF i create and populate with 127.0.0.1 www.myweb.xx, that page will be blocked too or that method don't work in "Home edition"? Another method?

Thank you

Anders 3rd November 2016 13:22

PHP Code:

!include LogicLib.nsh

Section
${If} ${FileExists"C:\something"
  
#...
${Else} 
  
#...
${EndIf}
SectionEnd 

but FileOpen should work, the a mode calls CreateFile with OPEN_ALWAYS

alibabavl64 4th November 2016 08:15

Quote:

Originally Posted by Anders (Post 3073160)

but FileOpen should work, [...]

Yes, in W10 64 PRO work perfectly. But in that version, Home Edition, didn't work.

Anders 4th November 2016 09:07

Try running Process Monitor and see why FileOpen fails on these systems...

alibabavl64 4th November 2016 16:34

Thank you, i'll try this.

alibabavl64 24th November 2016 12:26

Need help again:

Let say i installed once my programm.
Uninstall and reinstall.
In this case in hosts will be twice the "locked" pages.

(i don't agree overwrite method, in hosts can be links used by another programs, i think adblock plus and few solutions for cryptolocker prevent use hosts).

I want i check if in hosts i wrote a line like "127.0.0.1 xyz.abc" and if exist, do nothing and if not exist, append.

An idea for checking?
Thank you

Anders 24th November 2016 14:43

You can look at Appendix E in the help file and see if you can use any of the helper functions. If not, there is always plain FileRead + StrCpy & StrCmp to do manual string parsing but NSIS is never going to be the best way to edit text files.


All times are GMT. The time now is 17:41.

Copyright © 1999 - 2010 Nullsoft. All Rights Reserved.