I have successfully loaded the Hybris (6.0) B2C Accelerator but when I log into the back office and attempt to launch the ASM module it just launches my local instance of the website instead of the ASM.
Thoughts?
You need to :
Install the "assistedservice*" extensions
Install the ASM add-on into your accelerator store front extension
Run "ant all" and update your system
Access the store front with the argument "?asm=true"
Related
Is it possible to deploy installers (for example Chrome browser .exe file) to install on Windows client computers across all office buildings using OpenLDAP? The OpenLDAP is installed on CentOS 8. If it is not possible can Active Directory Help Me?
Why would you use a directory service to store binary files? This might be possible but it's a terrible idea.
Active Directory is a broad suite of tools. AD Domain Services is basically the OpenLDAP equivalent https://social.technet.microsoft.com/wiki/contents/articles/699.active-directory-domain-services-ad-ds-overview.aspx and doesn't do what you want
AD GP (Group Policy) allows you to push software https://learn.microsoft.com/en-us/troubleshoot/windows-server/group-policy/use-group-policy-to-install-software but if you're only using it to push a Chrome installer, it's overkill to set it all up. It does work though!
You can also use SCCM (oh I guess it's called MECM now, haven't touched it in a hot minute).
For some reason I cannot get this to work. I'm following the exact procedure described here
http://developer.chrome.com/extensions/external_extensions.html#registry
And I still cannot get the extension listed. If I install it manually, using "Add Unpacked Extension" it works just fine.
Any help would be greatly appreciated
One of many writeups on this subject:
Google on Friday announced that it is changing its stance for silently
installing extensions in its browser. As of Chrome 25, external
extension deployment options on Windows will be disabled by default
and all extensions previously installed using them will be
automatically disabled.
You're much better off submitting your extension to the Chrome Web Store. If you really want to install off-store, consider inline installation.
I have been struggling with installing an addon via the registry as well. I was successful with installing an addon without adding reg keys. And using the preferences file.
I extracted my extension to Local\Google\Chrome\User Data\Default\Extensions\${ADDONID}\${VERSION}
I then added my extension directly to the Preferences file in Local\Google\Chrome\User Data\Default under the section extensions settings ${ADDONID} <-- add your extension. Compare the Preferences file to an instance you have already installed your addon. And copy that to the Preferences file along with the extension directory on a fresh install. And it should work.
This thread gave me some direction:
https://superuser.com/questions/462804/how-to-copy-an-extension-from-one-chrome-installation-to-another
A client has an intranet LOB web app that they deploy to their clients' servers. With the latest update to their application, they want to use wants to use InstallShield 2012 to streamline the upgrade process. The install should replace the existing version with the new files in the installer. Their clients have often changed the physical location of the website to something other than inetpub, so they want to read that physical path from IIS and install wherever it indicates.
How can we pull the physical path location of a web application (with a known name) from IIS and use that for the installation?
The only solution I can think of is a custom action. Basically, you use custom code to retrieve the old path and save it in an installer property. This property can then be used in your installer.
Please note that only custom actions which receive the installation handle can set installer properties. So you can try creating a win32 DLL or VBScript custom action.
I already create a virtual directory (cgi-bin) with permission : Scripts and Executable...
When I test : http://localhost/cgi-bin/mapserv.exe, I got 404 error, The page cannot be found
Am I supposed to Add a EXTENSION mapping to .exe files ? Which executable ?
Thanks!
I solved that:
Go to Web Service Extensions in the IIS service manager
Select Add a new web service extension. On the required files tab, add
C:\YourMapserverInstalldir\mapserv.exe
Set it to allow
Thanks anyway...
Yes, you will have to create an application mapping between the file name extension of your script and the script interpreter. Check out this link.
Installing CGI Applications in IIS 6.0
I am using Visual Studio 2008 to build an MSI install package. Within the install I have numerous custom actions. Within the OnAfterInstall custom action I attempt to start an exe which is deployed by the install. The exe starts ok, but runs within a security context of NT AUTHORITY\SYSTEM (i.e. under the elevated privileges granted to the Windows Installer process). I actually need the exe to run in the security context of the currently logged-on user who started the install in the first place. Does anyone know how to start the exe so it runs in this 'reduced' context. I really want to avoid having to ask the user for their login credentials if possible.
You need to use Remote Desktop Services API: http://msdn.microsoft.com/en-us/library/aa383464%28v=VS.85%29.aspx . It is available starting from WinXP.
This API allows you to run your application in context of any logged in user account. You need to be running as a SYSTEM to be able to use it. And you are.
For instance you may enumerate sessions using WTSEnumerateSessions, then take user token by WTSQueryUserToken and run application using this token.