file association batch file windows 8

0

I'm trying to create a batch file that will associate .myroom file extension to myroom.exe program in windows 8 so whenever user clicks on a .myroom file, it will open it using myroom.exe software.

I have not written a registry batch file before. can someone please help me create one?

thank you :)

user208130

Posted 2013-03-17T23:25:06.087

Reputation: 1

Question was closed 2013-03-18T11:04:17.560

2

Have you seen: Programatically associate file extensions with application on Windows yet? What have you tried already?

– Ƭᴇcʜιᴇ007 – 2013-03-17T23:37:25.733

I saw that post but since I know working with registry is very sensitive, I didn't just try to come up with a batch file and wanted to ask expert's help. – user208130 – 2013-03-17T23:40:29.203

The other comment is correct. You won't need to do anything to the registry directly (and shouldn't). If you need help writing batch files in general, I reccommend http://ss64.com/nt/. You can find just about anything about writing batch files there.

– dgo – 2013-03-18T01:31:02.167

No answers