[RESOLVED] tis-itunes package

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
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
Locked
Yoann
Messages: 51
Registration: July 24, 2019 - 09:39

September 17, 2020 - 1:56 PM

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.
Last edited by Yoann on 18 Sep 2020 - 14:13, edited 1 time.
WAPT Community 1.8
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

September 18, 2020 - 11:00 AM

Hello,

Yes, I noticed that too. Apple made some changes to iTunes, and I was able to modify the package accordingly and greatly improve it in the process.
The new package is available on the Store. ;)

Best regards,
Jimmy
Yoann
Messages: 51
Registration: July 24, 2019 - 09:39

September 18, 2020 - 2:12 PM

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.
WAPT Community 1.8
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

September 18, 2020 - 2:38 PM

Yoann,

what type of device are you using? I don't have this problem with my iPhone.

Regards,
Jimmy
Yoann
Messages: 51
Registration: July 24, 2019 - 09:39

September 21, 2020 - 11:46

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.
WAPT Community 1.8
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

September 21, 2020 - 2:41 PM

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
Yoann
Messages: 51
Registration: July 24, 2019 - 09:39

September 25, 2020 - 1:51 PM

Good morning,

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')
Sincerely
WAPT Community 1.8
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

September 28, 2020 - 10:15

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.

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')
Sincerely,
Jimmy
Yoann
Messages: 51
Registration: July 24, 2019 - 09:39

September 29, 2020 - 10:02 AM

Hello,

Yes, it does work with both services set to "Manual".

Thank you,

Best regards.
WAPT Community 1.8
Locked