Inxes Posted October 25, 2012 Posted October 25, 2012 Launcher Version: 3.1.2 Operating System: windows 7 32 bit Java Version: 7.7 Antivirus Program: avast/system care advanced Description of Problem: wont even install launcher Error Messages: cannot load-C:\user\*********\appdata\roaming\Logs Requested Registry access is not allowed. at system Throwhelper .throwsecurity exxeption (Exxeption Resource resource) at microsoft.win32.registrykey.Opensubkey(String name, Boolean writeable) at microsoft.win32.registrykey.opensubkey(String name) at techniclauncher.program.get javafileassociationPath at techniclauncher.program.LogBasicSystemInfo(textwriter.log) at Techniclauncher.program.main) Error Log:
0 Nolz Posted October 26, 2012 Posted October 26, 2012 Run the program as Administrator All of the issues related to the launcher not having permission for something requires you to run it as Administrator (In case you don't know what it is, Right click > Run as Administrator) EDIT: Nevermind that, This is why you shouldn't put info in the Topic's name >_>
0 Inxes Posted October 26, 2012 Author Posted October 26, 2012 Still no difference I stated at the beggining I have tried as admin and their are 3 other posts with the same problem.
0 Ashzification Posted October 26, 2012 Posted October 26, 2012 Since none of my other solutions have worked, I turned to google. I found this: http://www.codeproject.com/Questions/51647/can-t-write-to-registry-in-currentuser Problem: The following code causes an error but should work. Why doesn't it work? The same code (originally in REALbasic) does work so the currentuser (also an admin on the pc) does have access to write to the registry. Public Sub SavePreference(ByVal pref As String, ByVal value As String) Dim tmp As RegistryKey = Registry.CurrentUser Dim tmp2 As RegistryKey tmp2 = tmp.OpenSubKey("SOFTWARE\example") If tmp2 Is Nothing Then tmp.CreateSubKey("SOFTWARE\example") tmp2 = tmp.OpenSubKey("SOFTWARE\example") End If If tmp2 IsNot Nothing Then tmp2.SetValue(pref, LCase(value)) End Sub A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll err> Cannot write to the registry key. stack> at System.ThrowHelper.ThrowUnauthorizedAccessException(ExceptionResource resource) at Microsoft.Win32.RegistryKey.EnsureWriteable() at Microsoft.Win32.RegistryKey.SetValue(String name, Object value, RegistryValueKind valueKind) at Microsoft.Win32.RegistryKey.SetValue(String name, Object value) at ConnectionTools.mMiscFunction.SavePreference(String pref, String value) in mMiscFunction.vb:line 92 First solution: You're using the wrong overload of Registry.OpenSubkey[^]. Registry.OpenSubkey(String) opens as read-only. Use RegistryKey.OpenSubKey(String, Boolean) instead. ie: Public Sub SavePreference(ByVal pref As String, ByVal value As String) Dim tmp As RegistryKey = Registry.CurrentUser Dim tmp2 As RegistryKey tmp2 = tmp.OpenSubKey("SOFTWARE\example", True) If tmp2 Is Nothing Then tmp.CreateSubKey("SOFTWARE\example") tmp2 = tmp.OpenSubKey("SOFTWARE\example", True) End If If tmp2 IsNot Nothing Then tmp2.SetValue(pref, LCase(value)) End Sub I put it in a code box as to not confuse what I'm saying and what I found. While I do NOT recommend messing with registry keys, this seems to be a solution that may work. I got to that link by searching: Can't write to registry Java, and you'll notice that the posted problem is from 2010. But it's a start, and google seems to be the way to find some answers for you guys. Again, I do NOT recommend messing with registry keys. Try to find a different way to do it, and don't blame me if you do and screw it up.
0 freakachu Posted October 26, 2012 Posted October 26, 2012 that is exactly 0 help to an end user, bride. unless you expect them to go download the source, edit it, and recompile. anyway, get the .jar version of the launcher and use that for now.
0 Inxes Posted October 26, 2012 Author Posted October 26, 2012 its non responsive when I click it the java box comes up then dissapears
0 freakachu Posted October 26, 2012 Posted October 26, 2012 it dont even load the .jar version then you have other issues. how about a log file? edit: or an error message or something.
0 freakachu Posted October 26, 2012 Posted October 26, 2012 did you look to see if it made any logs? because if that's all I have to go on you're pretty much fucked.
0 Inxes Posted October 26, 2012 Author Posted October 26, 2012 where would it be under it dont even install..
0 freakachu Posted October 26, 2012 Posted October 26, 2012 %appdata%\.techniclauncher\logs is where they would be. is this "java box" mostly black, by the way?
0 Inxes Posted October 26, 2012 Author Posted October 26, 2012 yes the java box is black nothing else and yes do you want me to post the log for you
0 freakachu Posted October 26, 2012 Posted October 26, 2012 no, I just wanted you to admire them. yes, post them. I can't help you otherwise.
0 Inxes Posted October 26, 2012 Author Posted October 26, 2012 [15:39:23] [sEVERE]------------------------------------------ [15:39:23] [sEVERE]Launcher is starting.... [15:39:23] [sEVERE]Launcher Build: '1.0.1.3' [15:39:23] [sEVERE]Allocated 989.875 Mb of RAM [15:39:23] [sEVERE]Java VM: '1.7.0_07-b11' [15:39:23] [sEVERE]OS Version: '6.1' [15:39:23] [sEVERE]Is 64-bit: 'false' [15:39:32] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [15:39:37] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [15:39:37] [sEVERE]Copying: \temp\file7566180735211838073.tmp to: \launcher\CHECKSUM.md5 [15:39:38] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [15:39:39] [sEVERE][info] Downloading 'modpacks.yml' from 'http://206.217.207.1/Technic/modpacks.yml'. [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/tekkit/resources/logo.png', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:44] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:45] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:45] [sEVERE]Starting download of '', with 3 trie(s) remaining [15:39:45] [sEVERE]Copying: \temp\file6420268264055622516.tmp to: \launcher\hackslashmine\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\hackslashmine\resources\favicon.png [15:39:45] [sEVERE]Copying: \temp\file9196632975232011336.tmp to: \launcher\vanilla\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\vanilla\resources\favicon.png [15:39:45] [sEVERE]Copying: \temp\file5036251427442126618.tmp to: \launcher\tekkit\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\tekkit\resources\favicon.png [15:39:45] [sEVERE]Copying: \temp\file4121534176817749128.tmp to: \launcher\hackslashmine\resources\icon.png [15:39:45] [sEVERE]Copying: \temp\file5781500385156184875.tmp to: \launcher\voxelmodpack\resources\icon.png [15:39:45] [sEVERE]Copying: \temp\file8298604147298447817.tmp to: \launcher\hackslashmine\resources\logo.png [15:39:45] [sEVERE]Copying: \temp\file7186852935469854930.tmp to: \launcher\yogbox\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\voxelmodpack\resources\icon.png [15:39:45] [sEVERE]File Downloaded: \launcher\hackslashmine\resources\icon.png [15:39:45] [sEVERE]Copying: \temp\file7339199302759943629.tmp to: \launcher\vanilla\resources\icon.png [15:39:45] [sEVERE]File Downloaded: \launcher\yogbox\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\hackslashmine\resources\logo.png [15:39:45] [sEVERE]File Downloaded: \launcher\vanilla\resources\icon.png [15:39:45] [sEVERE]Copying: \temp\file4521545525720007896.tmp to: \launcher\voxelmodpack\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\voxelmodpack\resources\favicon.png [15:39:45] [sEVERE]Copying: \temp\file4705366990246435613.tmp to: \launcher\yogbox\resources\icon.png [15:39:45] [sEVERE]File Downloaded: \launcher\yogbox\resources\icon.png [15:39:45] [sEVERE]Copying: \temp\file3314265401971941969.tmp to: \launcher\tekkit\resources\logo.png [15:39:45] [sEVERE]File Downloaded: \launcher\tekkit\resources\logo.png [15:39:45] [sEVERE]Copying: \temp\file2812237223130465880.tmp to: \launcher\technicssp\resources\favicon.png [15:39:45] [sEVERE]File Downloaded: \launcher\technicssp\resources\favicon.png [15:39:45] [sEVERE]Copying: \temp\file4493312521460577931.tmp to: \launcher\tekkit\resources\icon.png [15:39:45] [sEVERE]File Downloaded: \launcher\tekkit\resources\icon.png [15:39:45] [sEVERE]Copying: \temp\file1178624472155150985.tmp to: \launcher\technicssp\resources\icon.png [15:39:45] [sEVERE]File Downloaded: \launcher\technicssp\resources\icon.png [15:39:46] [sEVERE]Copying: \temp\file8760910694360965103.tmp to: \launcher\yogbox\resources\logo.png [15:39:46] [sEVERE]File Downloaded: \launcher\yogbox\resources\logo.png [15:39:46] [sEVERE]Copying: \temp\file8894012166921256782.tmp to: \launcher\vanilla\resources\logo.png [15:39:46] [sEVERE]File Downloaded: \launcher\vanilla\resources\logo.png [15:39:46] [sEVERE]Copying: \temp\file7116291533540433170.tmp to: \launcher\technicssp\resources\logo.png [15:39:46] [sEVERE]File Downloaded: \launcher\technicssp\resources\logo.png [15:39:52] [sEVERE]Copying: \temp\file2527711098192124047.tmp to: \launcher\voxelmodpack\resources\logo.png [15:39:52] [sEVERE]File Downloaded: \launcher\voxelmodpack\resources\logo.png [15:39:52] [sEVERE][info] Downloading 'libraries.yml' from 'http://mirror.technicpack.net/Technic/libraries.yml'. [15:39:53] [sEVERE][info] Downloading 'modlibrary.yml' from 'http://206.217.207.1/Technic/modlibrary.yml'. [15:43:42] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [15:43:43] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [15:44:12] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [15:45:32] [sEVERE]Exiting the Technic Launcher [15:47:34] [sEVERE]------------------------------------------ [15:47:34] [sEVERE]Launcher is starting.... [15:47:34] [sEVERE]Launcher Build: '1.0.1.3' [15:47:34] [sEVERE]Allocated 989.875 Mb of RAM [15:47:34] [sEVERE]Java VM: '1.7.0_07-b11' [15:47:34] [sEVERE]OS Version: '6.1' [15:47:34] [sEVERE]Is 64-bit: 'false' [15:47:35] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [15:47:36] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/CHECKSUM.md5', with 3 trie(s) remaining [15:47:37] [sEVERE]Copying: \temp\file1236950329356118626.tmp to: \launcher\CHECKSUM.md5 [15:47:37] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [15:47:37] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of 'ce80cac74a7796737f721da2ce0c6d9f' instead of '032eedc7183acde5b75cd13f9ff2e324' [15:47:38] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [15:47:39] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [15:48:04] [sEVERE]Exiting the Technic Launcher [15:51:16] [sEVERE]------------------------------------------ [15:51:16] [sEVERE]Launcher is starting.... [15:51:16] [sEVERE]Launcher Build: '1.0.1.3' [15:51:16] [sEVERE]Allocated 989.875 Mb of RAM [15:51:16] [sEVERE]Java VM: '1.7.0_07-b11' [15:51:16] [sEVERE]OS Version: '6.1' [15:51:16] [sEVERE]Is 64-bit: 'false' [15:51:18] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [15:51:19] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [15:51:19] [sEVERE]Copying: \temp\file2699000950928301293.tmp to: \launcher\CHECKSUM.md5 [15:51:19] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [15:51:20] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [15:51:20] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/tekkit/modpack.yml'. [15:51:21] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [15:51:32] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [15:54:37] [sEVERE]Exiting the Technic Launcher [15:54:42] [sEVERE]------------------------------------------ [15:54:42] [sEVERE]Launcher is starting.... [15:54:42] [sEVERE]Launcher Build: '1.0.1.3' [15:54:42] [sEVERE]Allocated 989.875 Mb of RAM [15:54:42] [sEVERE]Java VM: '1.7.0_07-b11' [15:54:42] [sEVERE]OS Version: '6.1' [15:54:42] [sEVERE]Is 64-bit: 'false' [15:54:43] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [15:54:44] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [15:54:44] [sEVERE]Copying: \temp\file574949015260573861.tmp to: \launcher\CHECKSUM.md5 [15:54:44] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [15:54:45] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [15:54:45] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [15:54:46] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [15:54:51] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [15:59:17] [sEVERE]Download of minecraft failed! [15:59:17] [sEVERE]Starting download of minecraft, with 2 trie(s) remaining [16:02:22] [sEVERE]Download of minecraft failed! [16:02:22] [sEVERE]Starting download of minecraft, with 1 trie(s) remaining [16:06:36] [sEVERE]Download of minecraft failed! [16:06:36] [sEVERE]java.io.IOException: Failed to download minecraft [16:06:36] [sEVERE]at org.spoutcraft.launcher.MinecraftDownloadUtils.downloadMinecraft(MinecraftDownloadUtils.java:77) [16:06:36] [sEVERE]at org.spoutcraft.launcher.GameUpdater.updateMC(GameUpdater.java:121) [16:06:36] [sEVERE]at org.spoutcraft.launcher.gui.LoginForm$3.doInBackground(LoginForm.java:843) [16:06:36] [sEVERE]at org.spoutcraft.launcher.gui.LoginForm$3.doInBackground(LoginForm.java:1) [16:06:36] [sEVERE]at javax.swing.SwingWorker$1.call(Unknown Source) [16:06:36] [sEVERE]at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) [16:06:36] [sEVERE]at java.util.concurrent.FutureTask.run(Unknown Source) [16:06:36] [sEVERE]at javax.swing.SwingWorker.run(Unknown Source) [16:06:36] [sEVERE]at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [16:06:36] [sEVERE]at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [16:06:36] [sEVERE]at java.lang.Thread.run(Unknown Source) [16:17:33] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [16:18:42] [sEVERE]Exiting the Technic Launcher [16:18:47] [sEVERE]------------------------------------------ [16:18:47] [sEVERE]Launcher is starting.... [16:18:47] [sEVERE]Launcher Build: '1.0.1.3' [16:18:47] [sEVERE]Allocated 989.875 Mb of RAM [16:18:47] [sEVERE]Java VM: '1.7.0_07-b11' [16:18:47] [sEVERE]OS Version: '6.1' [16:18:47] [sEVERE]Is 64-bit: 'false' [16:18:48] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [16:18:49] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/CHECKSUM.md5', with 3 trie(s) remaining [16:18:49] [sEVERE]Copying: \temp\file7791906755411094637.tmp to: \launcher\CHECKSUM.md5 [16:18:49] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [16:18:50] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [16:18:50] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/tekkit/modpack.yml'. [16:18:51] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [16:18:57] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [16:20:32] [sEVERE]Downloaded 'minecraft.jar' matches MD5 of version '1.3.2'. [16:20:33] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/Patches/Minecraft/minecraft_1.3.2-1.2.5.patch', with 3 trie(s) remaining [16:21:11] [sEVERE]Exiting the Technic Launcher [16:21:16] [sEVERE]------------------------------------------ [16:21:16] [sEVERE]Launcher is starting.... [16:21:16] [sEVERE]Launcher Build: '1.0.1.3' [16:21:16] [sEVERE]Allocated 989.875 Mb of RAM [16:21:16] [sEVERE]Java VM: '1.7.0_07-b11' [16:21:16] [sEVERE]OS Version: '6.1' [16:21:16] [sEVERE]Is 64-bit: 'false' [16:21:17] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [16:21:18] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/CHECKSUM.md5', with 3 trie(s) remaining [16:21:19] [sEVERE]Copying: \temp\file4671289170419539403.tmp to: \launcher\CHECKSUM.md5 [16:21:19] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [16:21:19] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [16:21:20] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [16:21:21] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [16:21:31] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [16:24:36] [sEVERE]Exiting the Technic Launcher [14:43:29] [sEVERE]------------------------------------------ [14:43:29] [sEVERE]Launcher is starting.... [14:43:29] [sEVERE]Launcher Build: '1.0.1.3' [14:43:29] [sEVERE]Allocated 989.875 Mb of RAM [14:43:29] [sEVERE]Java VM: '1.7.0_07-b11' [14:43:29] [sEVERE]OS Version: '6.1' [14:43:29] [sEVERE]Is 64-bit: 'false' [14:43:34] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [14:43:36] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [14:43:37] [sEVERE]Copying: \temp\file5004688838853780454.tmp to: \launcher\CHECKSUM.md5 [14:43:37] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [14:43:39] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [14:43:39] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/tekkit/modpack.yml'. [14:43:41] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [14:43:58] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [14:44:38] [sEVERE]Exiting the Technic Launcher [18:41:17] [sEVERE]------------------------------------------ [18:41:17] [sEVERE]Launcher is starting.... [18:41:17] [sEVERE]Launcher Build: '1.0.1.3' [18:41:17] [sEVERE]Allocated 989.875 Mb of RAM [18:41:17] [sEVERE]Java VM: '1.7.0_07-b11' [18:41:17] [sEVERE]OS Version: '6.1' [18:41:17] [sEVERE]Is 64-bit: 'false' [18:41:19] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [18:41:21] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [18:41:22] [sEVERE]Copying: \temp\file3801564335754285611.tmp to: \launcher\CHECKSUM.md5 [18:41:22] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [18:41:24] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [18:41:24] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/tekkit/modpack.yml'. [18:41:26] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [18:41:41] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [18:42:34] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/vanilla/modpack.yml'. [18:42:34] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [18:42:38] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [18:43:13] [sEVERE]Exiting the Technic Launcher [18:44:27] [sEVERE]------------------------------------------ [18:44:27] [sEVERE]Launcher is starting.... [18:44:27] [sEVERE]Launcher Build: '1.0.1.3' [18:44:27] [sEVERE]Allocated 989.875 Mb of RAM [18:44:27] [sEVERE]Java VM: '1.7.0_07-b11' [18:44:27] [sEVERE]OS Version: '6.1' [18:44:27] [sEVERE]Is 64-bit: 'false' [18:44:28] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [18:44:29] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [18:44:30] [sEVERE]Copying: \temp\file6223089925367167656.tmp to: \launcher\CHECKSUM.md5 [18:44:30] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [18:44:30] [sEVERE][MD5 Mismatch] File '\launcher\vanilla\modpack.yml' has md5 of '1d57802af587f0b366114889d75d2820' instead of '8123ee27186d0c0aec4551b061a699d9' [18:44:30] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/vanilla/modpack.yml'. [18:44:32] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [18:44:43] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [18:45:26] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [18:45:27] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [18:45:31] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [18:45:54] [sEVERE]Exiting the Technic Launcher [18:11:29] [sEVERE]------------------------------------------ [18:11:29] [sEVERE]Launcher is starting.... [18:11:29] [sEVERE]Launcher Build: '1.0.1.3' [18:11:29] [sEVERE]Allocated 989.875 Mb of RAM [18:11:29] [sEVERE]Java VM: '1.7.0_07-b11' [18:11:29] [sEVERE]OS Version: '6.1' [18:11:29] [sEVERE]Is 64-bit: 'false' [18:11:46] [sEVERE][info] Downloading 'mirrors.yml' from 'https://raw.github.com/TechnicPack/Technic/master/mirrors.yml'. [18:11:47] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [18:11:47] [sEVERE]Copying: \temp\file5179715982565150742.tmp to: \launcher\CHECKSUM.md5 [18:11:47] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [18:11:50] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [18:11:50] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/tekkit/modpack.yml'. [18:11:52] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [18:12:02] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [18:12:50] [sEVERE]Exiting the Technic Launcher [18:12:57] [sEVERE]------------------------------------------ [18:12:57] [sEVERE]Launcher is starting.... [18:12:57] [sEVERE]Launcher Build: '1.0.1.3' [18:12:57] [sEVERE]Allocated 989.875 Mb of RAM [18:12:57] [sEVERE]Java VM: '1.7.0_07-b11' [18:12:57] [sEVERE]OS Version: '6.1' [18:12:57] [sEVERE]Is 64-bit: 'false' [18:12:58] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [18:12:59] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [18:13:00] [sEVERE]Copying: \temp\file8194535843155486169.tmp to: \launcher\CHECKSUM.md5 [18:13:00] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [18:13:01] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [18:13:01] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [18:13:03] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [18:13:33] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [18:13:47] [sEVERE]Downloaded 'minecraft.jar' matches MD5 of version '1.3.2'. [18:13:48] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/Patches/Minecraft/minecraft_1.3.2-1.2.5.patch', with 3 trie(s) remaining [18:14:27] [sEVERE]Exiting the Technic Launcher [19:02:10] [sEVERE]------------------------------------------ [19:02:10] [sEVERE]Launcher is starting.... [19:02:10] [sEVERE]Launcher Build: '1.0.1.3' [19:02:10] [sEVERE]Allocated 989.875 Mb of RAM [19:02:10] [sEVERE]Java VM: '1.7.0_07-b11' [19:02:10] [sEVERE]OS Version: '6.1' [19:02:10] [sEVERE]Is 64-bit: 'false' [19:02:14] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [19:02:17] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [19:02:17] [sEVERE]Copying: \temp\file8301674219264667626.tmp to: \launcher\CHECKSUM.md5 [19:02:17] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [19:02:23] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [19:02:23] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [19:02:26] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [19:03:37] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [19:04:31] [sEVERE]Exiting the Technic Launcher [19:04:37] [sEVERE]------------------------------------------ [19:04:37] [sEVERE]Launcher is starting.... [19:04:37] [sEVERE]Launcher Build: '1.0.1.3' [19:04:37] [sEVERE]Allocated 989.875 Mb of RAM [19:04:37] [sEVERE]Java VM: '1.7.0_07-b11' [19:04:37] [sEVERE]OS Version: '6.1' [19:04:38] [sEVERE]Is 64-bit: 'false' [19:04:39] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [19:04:40] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [19:04:41] [sEVERE]Copying: \temp\file7461163826854274308.tmp to: \launcher\CHECKSUM.md5 [19:04:41] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [19:04:42] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [19:04:42] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/tekkit/modpack.yml'. [19:04:44] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [19:04:52] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/yogbox/modpack.yml'. [19:04:53] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [19:04:58] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [19:05:17] [sEVERE]Downloaded 'minecraft.jar' matches MD5 of version '1.3.2'. [19:05:18] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/Patches/Minecraft/minecraft_1.3.2-1.2.3.patch', with 3 trie(s) remaining [19:06:09] [sEVERE]Exiting the Technic Launcher [19:08:40] [sEVERE]------------------------------------------ [19:08:40] [sEVERE]Launcher is starting.... [19:08:40] [sEVERE]Launcher Build: '1.0.2.0' [19:08:40] [sEVERE]Allocated 989.875 Mb of RAM [19:08:40] [sEVERE]Java VM: '1.7.0_07-b11' [19:08:40] [sEVERE]OS Version: '6.1' [19:08:40] [sEVERE]Is 64-bit: 'false' [19:08:42] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [19:08:43] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [19:08:44] [sEVERE]Copying: \temp\file5823517031574352249.tmp to: \launcher\CHECKSUM.md5 [19:08:44] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [19:08:44] [sEVERE][MD5 Mismatch] File '\launcher\yogbox\modpack.yml' has md5 of '04b22c0c379c2abcd9e1ebbdec5af7c3' instead of '0103d69c0141f74c133947a2363c15d3' [19:08:45] [sEVERE][info] Downloading 'modpack.yml' from 'http://mirror.technicpack.net/Technic/yogbox/modpack.yml'. [19:08:48] [sEVERE][info] Downloading 'minecraft.yml' from 'http://mirror.technicpack.net/Technic/minecraft.yml'. [19:09:11] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '46a0900a4753fad02650edb182ed5670' instead of '032eedc7183acde5b75cd13f9ff2e324' [19:09:11] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [19:09:16] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [19:09:34] [sEVERE]Downloaded 'minecraft.jar' matches MD5 of version '1.3.2'. [19:09:35] [sEVERE]Starting download of 'http://mirror.technicpack.net/Technic/Patches/Minecraft/minecraft_1.3.2-1.2.5.patch', with 3 trie(s) remaining [19:10:18] [sEVERE]Exiting the Technic Launcher [19:10:45] [sEVERE]------------------------------------------ [19:10:45] [sEVERE]Launcher is starting.... [19:10:45] [sEVERE]Launcher Build: '1.0.2.0' [19:10:45] [sEVERE]Allocated 989.875 Mb of RAM [19:10:45] [sEVERE]Java VM: '1.7.0_07-b11' [19:10:45] [sEVERE]OS Version: '6.1' [19:10:45] [sEVERE]Is 64-bit: 'false' [19:10:47] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [19:10:48] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [19:10:49] [sEVERE]Copying: \temp\file7203183417910498934.tmp to: \launcher\CHECKSUM.md5 [19:10:49] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [19:10:49] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '0617096edb6df25e4377a265c12483ba' instead of '032eedc7183acde5b75cd13f9ff2e324' [19:10:50] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [19:10:51] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [19:11:26] [sEVERE]Rebooting with [java, -Xmx1536m, -jar, "C:/Users/Rich/AppData/Roaming/technic-launcher.jar"] [19:13:02] [sEVERE]------------------------------------------ [19:13:02] [sEVERE]Launcher is starting.... [19:13:02] [sEVERE]Launcher Build: '1.0.2.0' [19:13:02] [sEVERE]Allocated 245.5625 Mb of RAM [19:13:02] [sEVERE]Java VM: '1.7.0_07-b11' [19:13:02] [sEVERE]OS Version: '6.1' [19:13:02] [sEVERE]Is 64-bit: 'false' [19:13:04] [sEVERE][info] Downloading 'mirrors.yml' from 'http://mirror.technicpack.net/Technic/mirrors.yml'. [19:13:05] [sEVERE]Starting download of 'http://206.217.207.1/Technic/CHECKSUM.md5', with 3 trie(s) remaining [19:13:07] [sEVERE]Copying: \temp\file6591709830059013838.tmp to: \launcher\CHECKSUM.md5 [19:13:07] [sEVERE]File Downloaded: \launcher\CHECKSUM.md5 [19:13:08] [sEVERE][MD5 Mismatch] File '\launcher\tekkit\modpack.yml' has md5 of '0617096edb6df25e4377a265c12483ba' instead of '032eedc7183acde5b75cd13f9ff2e324' [19:13:08] [sEVERE][info] Downloading 'modpack.yml' from 'http://206.217.207.1/Technic/tekkit/modpack.yml'. [19:13:09] [sEVERE][info] Downloading 'minecraft.yml' from 'http://206.217.207.1/Technic/minecraft.yml'. [19:13:24] [sEVERE]Starting download of minecraft, with 3 trie(s) remaining [19:17:35] [sEVERE]Downloaded 'minecraft.jar' matches MD5 of version '1.3.2'. [19:17:36] [sEVERE]Starting download of 'http://206.217.207.1/Technic/Patches/Minecraft/minecraft_1.3.2-1.2.5.patch', with 3 trie(s) remaining [19:18:13] [sEVERE]Exiting the Technic Launcher
0 freakachu Posted October 26, 2012 Posted October 26, 2012 it looks like java may have some path issues. try this: start -> run type in "cmd" (no quotes) then hit enter a black box should appear in that box type the following (include the quotes): java -Xmx1536m -jar "C:/Users/Rich/AppData/Roaming/technic-launcher.jar" hit enter tell me what it says
0 Ashzification Posted October 26, 2012 Posted October 26, 2012 I only provided that because the other people having this problem seemed to 'try everything' (including the .jar). It's the only thing I've come up with that has anything to do with this problem.
0 Inxes Posted November 1, 2012 Author Posted November 1, 2012 does this help Windows 7 32-bit Contents of C:\Program Files\Java C:\Program Files\Java\jdk1.7.0_07 C:\Program Files\Java\jre6 C:\Program Files\Java\jre7 Registry points to C:\Program Files\Java\jre7\bin\java.exe Java not found in user's PATH. (This is normal) JAVA_HOME is not set. (This is normal)
0 Ashzification Posted November 1, 2012 Posted November 1, 2012 Too many Java's. Remove all of them and ONLY download Java 7. JRE
0 SirComputer Posted November 2, 2012 Posted November 2, 2012 It might be that the 1.2.5 download source is no longer available, looking at the log. Like Hack/Mine, it is refusing to download MC.
Question
Inxes
Launcher Version: 3.1.2
Operating System: windows 7 32 bit
Java Version: 7.7
Antivirus Program: avast/system care advanced
Description of Problem:
wont even install launcher
Error Messages:
cannot load-C:\user\*********\appdata\roaming\Logs
Requested Registry access is not allowed.
at system Throwhelper .throwsecurity exxeption (Exxeption Resource resource)
at microsoft.win32.registrykey.Opensubkey(String name, Boolean writeable)
at microsoft.win32.registrykey.opensubkey(String name)
at techniclauncher.program.get javafileassociationPath
at techniclauncher.program.LogBasicSystemInfo(textwriter.log)
at Techniclauncher.program.main)
Error Log:
21 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now