Hello,
there is a problem with the new version of the tis-itunes package.
The following error is returned: `msi file AppleApplicationSupport.msi not found in package`.
In the 64-bit package, the AppleApplicationSupport.msi is not present even though it is referenced in the `to_install_bins`.
Thank you,
Best regards.
[RESOLVED] tis-itunes package
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Hello,
package tis-itunes, when launching iTunes, a dialog box displays the following message: "The software required to communicate with iPods is not properly installed. Do you want iTunes to attempt to repair it?"
Thank you,
Best regards.
package tis-itunes, when launching iTunes, a dialog box displays the following message: "The software required to communicate with iPods is not properly installed. Do you want iTunes to attempt to repair it?"
Thank you,
Best regards.
WAPT Community 1.8
Hello,
I don't use any devices.
I've encountered a problem installing the tis-itunes in a virtualized environment: Windows 10 Pro 64-bit and Windows 7 Pro 32-bit.
After installing the package, when launching the software, the following message appears: "The software required to communicate with iPods is not properly installed. Do you want iTunes to attempt to repair it?"
I haven't connected any devices.
Sincerely.
I don't use any devices.
I've encountered a problem installing the tis-itunes in a virtualized environment: Windows 10 Pro 64-bit and Windows 7 Pro 32-bit.
After installing the package, when launching the software, the following message appears: "The software required to communicate with iPods is not properly installed. Do you want iTunes to attempt to repair it?"
I haven't connected any devices.
Sincerely.
WAPT Community 1.8
Hello,
You're getting this error because you're in a virtualized environment. Since iTunes is an audio media player, it displays an error because it doesn't detect a sound card on the system. This isn't a bug in the package; the machines on your network won't have this error.
Regards,
Jimmy
You're getting this error because you're in a virtualized environment. Since iTunes is an audio media player, it displays an error because it doesn't detect a sound card on the system. This isn't a bug in the package; the machines on your network won't have this error.
Regards,
Jimmy
Good morning,
By removing the following lines from the function installI no longer get the message when launching iTunes:
Sincerely
By removing the following lines from the function installI no longer get the message when launching iTunes:
Code: Select all
# Modifying default startup mode of Apple services
if get_service_start_mode('Apple Mobile Device Service') != 'Manual':
set_service_start_mode('Apple Mobile Device Service', 'Manual')
if get_service_start_mode('iPod Service') != 'Disabled':
set_service_start_mode('iPod Service', 'Disabled')WAPT Community 1.8
Good morning,
My mistake, I misinterpreted your error as a very similar one. Then I was also able to confirm the one you mentioned.
I'm switching the two iTunes-related services to "Manual" in the package, which should resolve the issue.
Sincerely,
Jimmy
My mistake, I misinterpreted your error as a very similar one. Then I was also able to confirm the one you mentioned.
I'm switching the two iTunes-related services to "Manual" in the package, which should resolve the issue.
Code: Select all
# Modifying default startup mode of Apple services
if get_service_start_mode('Apple Mobile Device Service') != 'Manual':
set_service_start_mode('Apple Mobile Device Service', 'Manual')
if get_service_start_mode('iPod Service') != 'Manual':
set_service_start_mode('iPod Service', 'Manual')Jimmy
