Im trying to sync an application from IIS7.5 to IIS7.5 using a package
On source: msdeploy -verb:sync -source:apphostconfig="MyApp" -dest:package=c:\MyApp.zip > MyApp.log
On destination: msdeploy -verb:sync -source:package=c:\Migration\MyApp.zip -dest:apphostconfig="MyNewApp" -whatif > MyApp.log
and I got the following error:
ERROR_APPLICATION_NOT_SUPPORTED: The following unsupported application(s) were detected on the source server “Dynamic IP Restrictions Beta” remove the application(s) and retry your sync with the “-whatif“ switch. If the sync still fails, you may need to remove any schema changes that the applications applied to your configuration before attempting another sync.
I know that I could install this module (it is a role service) in the destination server but I dont want to do that
My question is, how can I remove this or any other module from the source package or How can I skip this module or any other when running the sync command at the destination?
regards
ky