Jump to content

Recommended Posts

Posted

Hi

I’m still on quite an old version of simshaker it works fine with the P51

Although there’s no options for the spitfire

 

Is there any advantage to start messing around & trying the new version?

X4 channels for shakers ?

Spitfire support?

 

Anything else ?

Posted

so booted up today and now its asking me for a serial number and or to purchase. Ive had this since the beggining and have purchased in the past?

I7-8700 @5GHZ, 32GB 3000MHZ RAM, 1080TI, Rift S, ODYSSEY +. SSD DRIVES, WIN10

Posted

simshaker sound moduel has a registration tab now asking for activation key. Ive been activated for years

I7-8700 @5GHZ, 32GB 3000MHZ RAM, 1080TI, Rift S, ODYSSEY +. SSD DRIVES, WIN10

Posted

i just bought it again, you guys do good work so its worth it. Just waiting for activation key

I7-8700 @5GHZ, 32GB 3000MHZ RAM, 1080TI, Rift S, ODYSSEY +. SSD DRIVES, WIN10

Posted
i just bought it again, you guys do good work so its worth it. Just waiting for activation key

 

@All:

 

but please keep in mind, the SoundModule is Andre's baby. I've nothing to do with it... There's a dedicated thread for it: https://forums.eagle.ru/showthread.php?t=144060

Posted
If I try the latest version will the installation effect the old version & settings I’ve been using for last year?

I'm not sure what you mean. But if you update, the old version gets replaced by the new one. The settings should be copied over, however, it's a good practice to take some old school backups like screenshots and/or written notes...

Posted

I have the SSA and Module for my shakers. I just went through and set the Strengths for Each Effect testing them in the Sound Module 'Test' tab.. But I'm getting no Engine Rumble at all in the F/A-18. What is the status of the F/A-18 support in SimShaker?

 

I also didn't find any sound files to test in the module for the Refuel Boom, Tail Hook, Wheel Blocking, and I think Turbulence.

🍺 Snack Officer  🥨 
Intel I9-10850K (OC @ 5.0ghz) │ 64GB (4x16GB) DDR4 3200 │Gigabyte RTX 4090 Gaming OC 24gb
- ҉ - Blackshark Cockpit Trainer - ҉ -    Thread   | Download

Posted
I have the SSA and Module for my shakers. I just went through and set the Strengths for Each Effect testing them in the Sound Module 'Test' tab.. But I'm getting no Engine Rumble at all in the F/A-18. What is the status of the F/A-18 support in SimShaker?

 

I also didn't find any sound files to test in the module for the Refuel Boom, Tail Hook, Wheel Blocking, and I think Turbulence.

DCS does not report RPM and APU values for the Hornet, thus SSA can not play the effects...

 

For the other effects you mentioned SSA uses a mixture of other and generic files...

Posted

Something I wonder, I have uninstalled ssa (and also simshaker wheels) because I have no more gametrix, while I wait for the new forcefeel, but each time I start my computer I have a message asking if I want to install them again...

 

Thanks

 

Envoyé de mon SM-G955F en utilisant Tapatalk

Favorite modules : Huey, F-86F, F14 and P-51D

Quest 2, RTX 3080, i7 10700K, 16 Gb of RAM, Pro Flight Trainer PUMA helicopter setup, Warthog HOTAS with two force sensitive stick, custom cockpit and a GS-Cobra dynamic seat.

Posted
Something I wonder, I have uninstalled ssa (and also simshaker wheels) because I have no more gametrix, while I wait for the new forcefeel, but each time I start my computer I have a message asking if I want to install them again...

 

Thanks

 

Envoyé de mon SM-G955F en utilisant Tapatalk

Check your autostart entries... Here are some instructions which might help: https://support.microsoft.com/en-gb/help/4026268/windows-10-change-startup-apps

Posted
DCS does not report RPM and APU values for the Hornet, thus SSA can not play the effects...

 

For the other effects you mentioned SSA uses a mixture of other and generic files...

Hmm.. that's too bad. Do they plan on fixing that? :huh:

🍺 Snack Officer  🥨 
Intel I9-10850K (OC @ 5.0ghz) │ 64GB (4x16GB) DDR4 3200 │Gigabyte RTX 4090 Gaming OC 24gb
- ҉ - Blackshark Cockpit Trainer - ҉ -    Thread   | Download

Posted

CaptZeen has the IFIE Engine data in his Helios profile. Can you some other engine data to simulate engine shake?

🍺 Snack Officer  🥨 
Intel I9-10850K (OC @ 5.0ghz) │ 64GB (4x16GB) DDR4 3200 │Gigabyte RTX 4090 Gaming OC 24gb
- ҉ - Blackshark Cockpit Trainer - ҉ -    Thread   | Download

Posted
I'm not sure if helios is able to show the rpm. If so, I'll have a look. Maybe I can reuse that workaround...

As I was thinking about this last night, I remembered that Capt. Zeen's profile just displays an exported window from the game for that gauge. So, he may not be getting any engine info for his profile. :doh:

🍺 Snack Officer  🥨 
Intel I9-10850K (OC @ 5.0ghz) │ 64GB (4x16GB) DDR4 3200 │Gigabyte RTX 4090 Gaming OC 24gb
- ҉ - Blackshark Cockpit Trainer - ҉ -    Thread   | Download

Posted

Hello all, just for your info:

 

The data from IFEI and UFC can be extracted using the List_Indication function. So you can access the engines rpm data.

I created this code to implement the IFEI and UFC, but at the end, i dont use it because the viewports export do the same job.

You can use it if you need it to implement the engines rpm

Of course you can delete all the data you dont need:

 

 


function parse_indication(indicator_id)  -- Thanks to [FSF]Ian for this function code
local ret = {}
local li = list_indication(indicator_id)
if li == "" then return nil end
local m = li:gmatch("-----------------------------------------\n([^\n]+)\n([^\n]*)\n")
while true do
local name, value = m()
if not name then break end
	ret[name] = value
end
return ret
end


function check(indicator)
if indicator == nil then
	return " "
else
	return indicator
end
end
function check_num(indicator)
if indicator == nil then
	return 0
else
	return 1
end
end

function Process_FA18C_HighImportance(mainPanelDevice)   -- Capt Zeen code


local _LAST_ONE = 0 -- used to mark the end of the tables	
local MainPanel = GetDevice(0)

--IFEI data
local IFEI_Data_table = {}
for i=1,21 do IFEI_Data_table[i] = "" end
--IFEI textures
local IFEI_Textures_table = {}
for i=1,16 do IFEI_Textures_table[i] = 0 end
--UFC data
local UFC_table = {}
for i=1,17 do UFC_table[i] = "" end

-- getting the IFEI data
local li = parse_indication(5)  -- use 5 for IFEI, 6 for UFC
if li then
	--IFEI data
	
		IFEI_Data_table[1]  =check(li.txt_BINGO)
		IFEI_Data_table[2]  =check(li.txt_CLOCK_H)
		IFEI_Data_table[3]  =check(li.txt_CLOCK_M)
		IFEI_Data_table[4]  =check(li.txt_CLOCK_S)
		IFEI_Data_table[5]  =check(li.txt_DD_1)
		IFEI_Data_table[6]  =check(li.txt_DD_2) 
		IFEI_Data_table[7]  =check(li.txt_DD_3) 
		IFEI_Data_table[8]  =check(li.txt_DD_4) 		
		IFEI_Data_table[9]  =check(li.txt_FF_L)
		IFEI_Data_table[10] =check(li.txt_FF_R)
		IFEI_Data_table[11] =check(li.txt_FUEL_DOWN)
		IFEI_Data_table[12] =check(li.txt_FUEL_UP)
		IFEI_Data_table[13] =check(li.txt_OilPress_L)
		IFEI_Data_table[14] =check(li.txt_OilPress_R)
		IFEI_Data_table[15] =check(li.txt_RPM_L)
		IFEI_Data_table[16] =check(li.txt_RPM_R)
		IFEI_Data_table[17] =check(li.txt_TEMP_L)
		IFEI_Data_table[18] =check(li.txt_TEMP_R)
		IFEI_Data_table[19] =check(li.txt_TIMER_S)
		IFEI_Data_table[20] =check(li.txt_TIMER_M)
		IFEI_Data_table[21] =check(li.txt_TIMER_H)
		IFEI_Data_table[22] =check(li.txt_Codes)
		IFEI_Data_table[23] =check(li.txt_SP)
		IFEI_Data_table[24] =check(li.txt_DrawChar)
		IFEI_Data_table[25] =check(li.txt_T)
		IFEI_Data_table[26] =check(li.txt_TimeSetMode)
		IFEI_Data_table[27] =""
	
	for i=5,8 do-- Helios dont like the ":" so i replaced it for another character
		if IFEI_Data_table[i]==":" then 
			IFEI_Data_table[i]	= "x" 
		end
	end
	--IFEI textures
	
		IFEI_Textures_table[1]  =check_num(li.RPMTexture)		
		IFEI_Textures_table[2]  =check_num(li.TempTexture)	
		IFEI_Textures_table[3]  =check_num(li.FFTexture )		
		IFEI_Textures_table[4]  =check_num(li.NOZTexture) 		
		IFEI_Textures_table[5]  =check_num(li.OILTexture) 		
		IFEI_Textures_table[6]  =check_num(li.BINGOTexture) 	
		IFEI_Textures_table[7]  =check_num(li.LScaleTexture) 	
		IFEI_Textures_table[8]  =check_num(li.RScaleTexture) 	
		IFEI_Textures_table[9]  =check_num(li.L0Texture) 		
		IFEI_Textures_table[10] =check_num(li.R0Texture)		
		IFEI_Textures_table[11] =check_num(li.L50Texture)		
		IFEI_Textures_table[12] =check_num(li.R50Texture)		
		IFEI_Textures_table[13] =check_num(li.L100Texture) 	
		IFEI_Textures_table[14] =check_num(li.R100Texture) 	
		IFEI_Textures_table[15] =check_num(li.LPointerTexture)
		IFEI_Textures_table[16] =check_num(li.RPointerTexture)
		IFEI_Textures_table[17] =""
	
end	
	
-- getting the UFC data
local li = parse_indication(6)  -- use 5 for IFEI, 6 for UFC
if li then
		
		UFC_table[1]  =check(li.UFC_MainDummy)
        UFC_table[2]  =check(li.UFC_mask)
        UFC_table[3]  =check(li.UFC_OptionDisplay1)
        UFC_table[4]  =check(li.UFC_OptionDisplay2)
        UFC_table[5]  =check(li.UFC_OptionDisplay3)
        UFC_table[6]  =check(li.UFC_OptionDisplay4)
        UFC_table[7]  =check(li.UFC_OptionDisplay5)
        UFC_table[8]  =check(li.UFC_OptionCueing1)
        UFC_table[9]  =check(li.UFC_OptionCueing2)
        UFC_table[10] =check(li.UFC_OptionCueing3)
        UFC_table[11] =check(li.UFC_OptionCueing4)
        UFC_table[12] =check(li.UFC_OptionCueing5)
        UFC_table[13] =check(li.UFC_ScratchPadString1Display)
        UFC_table[14] =check(li.UFC_ScratchPadString2Display)
        UFC_table[15] =check(li.UFC_ScratchPadNumberDisplay)
        UFC_table[16] =check(li.UFC_Comm1Display)
        UFC_table[17] =check(li.UFC_Comm2Display)
		UFC_table[18] =""
   
	for i=8,12 do -- Helios dont like the ":" so i replaced it for another character
		if UFC_table[i]==":" then 
			UFC_table[i]	= "x"
		end
	end
end

-- sending IFEI and UFC data
SendData("24", string.format("%s", table.concat(IFEI_Data_table,", ") ) )    -- IFEI data	    >>> "ADI", "Slip ball"
SendData("21", string.format("%s", table.concat(IFEI_Textures_table,", ") ) )    -- IFEI data	    >>> "ADI", "Pitch Steering Bar Offset"
SendData("20", string.format("%s", table.concat(UFC_table,", ") ) )    -- UFC data	    >>> "ADI", "Bank Steering Bar Offset"



FlushData()

end

Posted

This happened about 3 days ago. And now it happened again today when I booted up. SSA tried to download and failed. At the bottom it says "The operation has timed out".

 

When I click on the 'Details...' button this is what it says:

 

PLATFORM VERSION INFO

Windows : 10.0.17134.0 (Win32NT)

Common Language Runtime : 4.0.30319.42000

System.Deployment.dll : 4.7.3056.0 built by: NET472REL1

clr.dll : 4.7.3260.0 built by: NET472REL1LAST_C

dfdll.dll : 4.7.3056.0 built by: NET472REL1

dfshim.dll : 10.0.17134.1 (WinBuild.160101.0800)

 

SOURCES

Deployment url : file:///C:/Users/Andy/AppData/Roaming/Microsoft/Windows/Start%20Menu/Programs/Startup/SimShaker%20for%20Aviators.appref-ms%7C

 

ERROR SUMMARY

Below is a summary of the errors, details of these errors are listed later in the log.

* Activation of C:\Users\Andy\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\SimShaker for Aviators.appref-ms| resulted in exception. Following failure messages were detected:

+ Downloading http://dsteam.azurewebsites.net/SSA/release/SimShaker for Aviators.application did not succeed.

+ The operation has timed out

 

COMPONENT STORE TRANSACTION FAILURE SUMMARY

No transaction error was detected.

 

WARNINGS

There were no warnings during this operation.

 

OPERATION PROGRESS STATUS

* [12/13/2018 9:55:39 AM] : Activation of C:\Users\Andy\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\SimShaker for Aviators.appref-ms| has started.

 

ERROR DETAILS

Following errors were detected during this operation.

* [12/13/2018 9:57:19 AM] System.Deployment.Application.DeploymentDownloadException (Unknown subtype)

- Downloading http://dsteam.azurewebsites.net/SSA/release/SimShaker for Aviators.application did not succeed.

- Source: System.Deployment

- Stack trace:

at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)

at System.Deployment.Application.SystemNetDownloader.DownloadAllFiles()

at System.Deployment.Application.FileDownloader.Download(SubscriptionState subState, X509Certificate2 clientCertificate)

at System.Deployment.Application.DownloadManager.DownloadManifestAsRawFile(Uri& sourceUri, String targetPath, IDownloadNotification notification, DownloadOptions options, ServerInformation& serverInformation)

at System.Deployment.Application.DownloadManager.DownloadDeploymentManifestDirect(SubscriptionStore subStore, Uri& sourceUri, TempFile& tempFile, IDownloadNotification notification, DownloadOptions options, ServerInformation& serverInformation)

at System.Deployment.Application.DownloadManager.DownloadDeploymentManifest(SubscriptionStore subStore, Uri& sourceUri, TempFile& tempFile, IDownloadNotification notification, DownloadOptions options)

at System.Deployment.Application.ApplicationActivator.ProcessOrFollowShortcut(String shortcutFile, String& errorPageUrl, TempFile& deployFile)

at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl, Uri& deploymentUri)

at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)

--- End of stack trace from previous location where exception was thrown ---

at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)

at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)

--- Inner Exception ---

System.Net.WebException

- The operation has timed out

- Source: System

- Stack trace:

at System.Net.HttpWebRequest.GetResponse()

at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)

 

COMPONENT STORE TRANSACTION DETAILS

No transaction information is available.

 

🍺 Snack Officer  🥨 
Intel I9-10850K (OC @ 5.0ghz) │ 64GB (4x16GB) DDR4 3200 │Gigabyte RTX 4090 Gaming OC 24gb
- ҉ - Blackshark Cockpit Trainer - ҉ -    Thread   | Download

Posted
Hello all, just for your info:

 

...

 

Wow! Thank you very much. I'll have a more detailed look later this year and try to integrate this into SSA...

 

This happened about 3 days ago. And now it happened again today when I booted up. SSA tried to download and failed. At the bottom it says "The operation has timed out".

 

When I click on the 'Details...' button this is what it says:

 

Looks like your computer can not reach the sever to check if a new update is available... The server is managed by Andre...

Posted (edited)

I am connected to the internet just fine. Everything else works. I shutdown my pc and ran some errands for about 2 hours. When I booted up I got a different error this time.

 

 

PLATFORM VERSION INFO
Windows 			: 10.0.17134.0 (Win32NT)
Common Language Runtime 	: 4.0.30319.42000
System.Deployment.dll 		: 4.7.3056.0 built by: NET472REL1
clr.dll 			: 4.7.3260.0 built by: NET472REL1LAST_C
dfdll.dll 			: 4.7.3056.0 built by: NET472REL1
dfshim.dll 			: 10.0.17134.1 (WinBuild.160101.0800)

SOURCES
Deployment url			: file:///C:/Users/Andy/AppData/Roaming/Microsoft/Windows/Start%20Menu/Programs/Startup/SimShaker%20for%20Aviators.appref-ms%7C
					Server		: Microsoft-IIS/10.0
					X-Powered-By	: ASP.NET
Deployment Provider url		: [url]http://dsteam.azurewebsites.net/SSA/release/SimShaker%20for%20Aviators.application[/url]
Application url			: [url]http://dsteam.azurewebsites.net/SSA/release/Application%20Files/SimShaker%20for%20Aviators_1_3_2_1/SimShaker%20for%20Aviators.exe.manifest[/url]
					Server		: Microsoft-IIS/10.0
					X-Powered-By	: ASP.NET

IDENTITIES
Application Identity		: SimShaker for Aviators.exe, Version=1.3.2.1, Culture=neutral, PublicKeyToken=582bdd2a80198c18, processorArchitecture=x86, type=win32

ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* Activation of C:\Users\Andy\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\SimShaker for Aviators.appref-ms| resulted in exception. Following failure messages were detected:

	+ The requested operation requires elevation. (Exception from HRESULT: 0x800702E4)

COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.

WARNINGS
There were no warnings during this operation.

OPERATION PROGRESS STATUS
* [12/13/2018 1:26:11 PM] : Activation of C:\Users\Andy\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\SimShaker for Aviators.appref-ms| has started.
* [12/13/2018 1:26:12 PM] : Installation of the application has started.
* [12/13/2018 1:26:12 PM] : Processing of application manifest has successfully completed.
* [12/13/2018 1:26:13 PM] : Found compatible runtime version 4.0.30319.
* [12/13/2018 1:26:13 PM] : Request of trust and detection of platform is complete.
* [12/13/2018 1:26:13 PM] : Commit of the downloaded application has started.
* [12/13/2018 1:26:13 PM] : Installation of application has successfully completed.

ERROR DETAILS
Following errors were detected during this operation.


* [12/13/2018 1:26:13 PM] System.Runtime.InteropServices.COMException
	- The requested operation requires elevation. (Exception from HRESULT: 0x800702E4)
	- Source: System.Deployment
	- Stack trace:
		at System.Deployment.Application.NativeMethods.CorLaunchApplication(UInt32 hostType, String applicationFullName, Int32 manifestPathsCount, String[] manifestPaths, Int32 activationDataCount, String[] activationData, PROCESS_INFORMATION processInformation)





		at System.Deployment.Application.ComponentStore.ActivateApplication(DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
		at System.Deployment.Application.SubscriptionStore.ActivateApplication(DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
		at System.Deployment.Application.ApplicationActivator.Activate(DefinitionAppId appId, AssemblyManifest appManifest, String activationParameter, Boolean useActivationParameter)
		at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl, Uri& deploymentUri)
		at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
--- End of stack trace from previous location where exception was thrown ---
		at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
		at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
		at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)








COMPONENT STORE TRANSACTION DETAILS

* Transaction at [12/13/2018 1:26:13 PM]
	+ System.Deployment.Internal.Isolation.StoreOperationStageComponent
		- Status: Installed
		- HRESULT: 0x0
		- Manifest: DBKGCODZ.QW9.application
	+ System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata
		- Status: Set
		- HRESULT: 0x0
	+ System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata
		- Status: Set
		- HRESULT: 0x0
	+ System.Deployment.Internal.Isolation.StoreTransactionOperationType (27)
		- HRESULT: 0x0

 

 

I clicked ok on that popup to close it.

And after a few minutes of looking at that error info, double clicked on SSA again and got another different error.. I cannot even start SSA anymore. The sound module works fine...

 

 

PLATFORM VERSION INFO
Windows 			: 10.0.17134.0 (Win32NT)
Common Language Runtime 	: 4.0.30319.42000
System.Deployment.dll 		: 4.7.3056.0 built by: NET472REL1
clr.dll 			: 4.7.3260.0 built by: NET472REL1LAST_C
dfdll.dll 			: 4.7.3056.0 built by: NET472REL1
dfshim.dll 			: 10.0.17134.1 (WinBuild.160101.0800)

SOURCES
Deployment url			: file:///F:/My%20Documents/+%20Desktop/My%20Windows%20Desktop/SimShaker%20for%20Aviators.appref-ms%7C
					Server		: Microsoft-IIS/10.0
					X-Powered-By	: ASP.NET
Deployment Provider url		: [url]http://dsteam.azurewebsites.net/SSA/release/SimShaker%20for%20Aviators.application[/url]

ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* Activation of F:\My Documents\+ Desktop\My Windows Desktop\SimShaker for Aviators.appref-ms| resulted in exception. Following failure messages were detected:
	+ The requested operation requires elevation. (Exception from HRESULT: 0x800702E4)

COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.

WARNINGS
There were no warnings during this operation.

OPERATION PROGRESS STATUS
* [12/13/2018 2:02:49 PM] : Activation of F:\My Documents\+ Desktop\My Windows Desktop\SimShaker for Aviators.appref-ms| has started.
* [12/13/2018 2:02:49 PM] : Performing necessary update check as specified by the deployment.

ERROR DETAILS
Following errors were detected during this operation.
* [12/13/2018 2:02:49 PM] System.Runtime.InteropServices.COMException
	- The requested operation requires elevation. (Exception from HRESULT: 0x800702E4)
	- Source: System.Deployment
	- Stack trace:
		at System.Deployment.Application.NativeMethods.CorLaunchApplication(UInt32 hostType, String applicationFullName, Int32 manifestPathsCount, String[] manifestPaths, Int32 activationDataCount, String[] activationData, PROCESS_INFORMATION processInformation)
		at System.Deployment.Application.ComponentStore.ActivateApplication(DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
		at System.Deployment.Application.SubscriptionStore.ActivateApplication(DefinitionAppId appId, String activationParameter, Boolean useActivationParameter)
		at System.Deployment.Application.ApplicationActivator.Activate(DefinitionAppId appId, AssemblyManifest appManifest, String activationParameter, Boolean useActivationParameter)
		at System.Deployment.Application.ApplicationActivator.ProcessOrFollowShortcut(String shortcutFile, String& errorPageUrl, TempFile& deployFile)
		at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl, Uri& deploymentUri)
		at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
--- End of stack trace from previous location where exception was thrown ---
		at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
		at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
		at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)

COMPONENT STORE TRANSACTION DETAILS
No transaction information is available.

 

 

EDIT:

After some googling to figure out where SSA was installed, I ran the version that I had in a folder(sims..tion_582bdd2a80198c18_0001.0003_d0f1f0f8bbb3643f) dated 11/25/18, and it ran fine.

 

You can see from those logs that I tried to run SSA from my Desktop Icon and also from my Start Menu Icon. Both failed. They must be pointing to the wrong folder or something? This started yesterday..

 

How do I fix those shortcuts? Or can I just drag a shortcut to my desktop from the install folder? (I'm guessing that will not work after another update?)..

 

Snacko

Edited by Snacko

🍺 Snack Officer  🥨 
Intel I9-10850K (OC @ 5.0ghz) │ 64GB (4x16GB) DDR4 3200 │Gigabyte RTX 4090 Gaming OC 24gb
- ҉ - Blackshark Cockpit Trainer - ҉ -    Thread   | Download

×
×
  • Create New...