On The Mark

  • About

    aside 21 Nov

    Apple mobile device service failed to start

    Issue

    When trying to install iTunes (for iPhone or iPod) on Windows 7 (possible XP and Vista as well) several of the components install but you eventually get a message similar to one below:

    1. “Apple mobile device service failed to start.”
    2. “Windows could not start the Apple Mobile Device service on local computer, error 1067: the process terminated unexpectedly”

    Resolution

    1. Temporarily disable your anti-virus software.  In my case I was using Windows Microsoft Security Essentials.  To disable Windows Essentials temporarily – see the screen shot below.
      Click the options tab in Microsoft Security Essentials then disable real-time protection
    2. Temporarily disable your anti-spyware software.  In my case I was using Windows Defender that is pre-installed on Windows 7.  To disable Windows Defender temporarily – see the two screen shots below.
      Click tools then options to get to the settings to disable Windows Defender.
      Click the checkbox to disable Windows Defender.
    3. Try reinstalling iTunes.  This time the Apple mobile device support software should install.  If it does not you may have to “unpack” the installers in the setup using something like 7Zip and install AppleMobileDeviceSupport by itself.
    4. If you’ve successfully installed iTunes make sure to re-enable your security software in steps 5 and 6.
    5. Re-enable you anti-spyware software.  In my case Windows Defender following the steps above, this time checking the box to enable real-time protection.
    6. Re-enable you anti-virus software.  In my case Microsoft Security Essentials following the steps above, this time checking the box to enable real-time protection.

    Background

    Recently I had to resintall Windows on my desktop.  While installing all my apps I had encountered a more stubborn that usual time getting an application to install.  Apparently I was not alone in having iTunes install, in this case for my iPhone.  Everywhere I searched seemed to turn up dead ends until I found a path that worked for me.  Hopefully this helps others too.  If it does please leave a comment.

    It appears that the mobile device support is getting blocked by either your anti-virus or anti-spyware software.


    [Translate]
    aside 15 Nov

    How To: SQL Server Reporting Date Formating

    To select a date format, wrap your field value in a format statement

    = Format(Fields!DateFieldToFormat.Value,”M/d/yyyy”)

    It is as simple as that!


    [Translate]
    aside 15 Nov

    Unable to find Adobe PDF resource file. “Acrobat PDFMaker” “You must have administrator privileges to install these files. Please contact your local system administrator.

    Issue

    Error message “Unable to find Adobe PDF resource file.” “Acrobat PDFMaker” “You must have administrator privileges to install these files. Please contact your local system administrator.”

    Unable to find Adobe PDF resource file. "Acrobat PDFMaker" You must have administrator privileges to install these files. Please contact your local system administrator.

    Resolution

    1. To fix this error, launch the Acrobat setup and select Modify
      Acrobat 7 Setup Dialog
    2. Uninstall Acrobat PDFMaker
      Acrobat 7.0 PDF Maker Option Removal
    3. Relaunch Acrobat Setup, modify, and select/reinstall Acrobat PDFMaker

    Background

    System was a clean install of Vista (system previously XP), Acrobat was setup and PageMaker was installed. Possible cause of this issue may have stemmed from PageMaker installing Acrobat Distiller 5.0 (Current Acrobat install was Acrobat Professional 7.1).


    [Translate]
    aside 15 Nov

    .NET Framework execution was aborted by escalation policy because of out of memory.

    I recently created a SQL database that has to store files as blobs but before doing so a vb.net CLR function performs an MD5 has on the file to store with it.  Everything runs great typically except for on occassion a very large file (4MB) will come along and blow the following error, “.NET Framework execution was aborted by escalation policy because of out of memory“.

    To date I’ve tried several settings on SQL Server (2005) unsuccessfully so for now the only way I’ve been able to get around this is to run this SQL command:

    DBCC FREESYSTEMCACHE ('ALL')

    Running the above SQL command allowed memory to be cleared so the file could be loaded.

    Previous research has shown possible fixes based around MemToLeave setting of SQL Server which appears to be a major undertaking!


    [Translate]
    aside 17 Sep

    SQL Query: Determine view or stored procedures using tables, columns, functions, etc

    On occasion it is handy to have a SQL snippet to find SQL views in a database that are using a particular table, column, function, or other SQL.  Fortunately SQL Server offers several information schema views to help out.

    Using the system view INFORMATION_SCHEMA.VIEWS you can query the views definition (think the SQL you used to create the view).  It is as simple as searching the system views VIEW_DEFINITION column.  See the example below:

    SELECT     TABLE_NAME
    FROM         INFORMATION_SCHEMA.VIEWS
    WHERE VIEW_DEFINITION LIKE '%search criteria%'

    Similarly you can search stored procedures using the example below:

    SELECT     ROUTINE_NAME 
    FROM         INFORMATION_SCHEMA.ROUTINES 
    WHERE ROUTINE_DEFINITION LIKE '%search criteria%'

     

    Applies to: MS SQL Server 2005


    [Translate]
    aside 22 Jun

    iPhone OS4 Update for 3G

    The highly anticipated iPhone update to OS4 encountered a lot of issues users of the 3G phone.  It appears that 3G users can’t follow the prompts as directed but instead have to take an alternate route.

    1. Backup your iPhone first; this is always a given and you may even want to make a copy of the backup to a USB stick
    2. Select the Restore button instead of the Update button; yes Restore is the way to actually get the update pushed to your phone
    3. Typically after about 20-30 minutes your phone is updated

    Many users reported waiting hours to get their phone to update.  Some users waited over a day and the update still would not install but instead remain stuck or stalled at the backup stage.


    [Translate]
    aside 2 Feb

    Because of a protocol error detected at the client (code 0×1104), this session will be disconnected. Please try connecting to the remote computer again.

     

    When using remote desktop connection to connect to a server I recently encountered the “Because of a protocol error detected at the client (code 0×1104), this session will be disconnected.  Please try connecting to the remote computer again.” error. 

    The error was encountered after:

    • I had just logged into the the server the night before with no issues. 
    • Able to login to another server and tried to roundtrip to server in question from another server.  Still the same error persisted.
    • Rebooting of my machine did not change the errors.

    How to fix:

    RDPIn your RDP connection window, expand options if they are already not expanded and then select the Experience tab.  Unselect the Themes checkbox (Prior to Windows 7) or Visual Styles checkbox in Windows 7. 

    Try logging in again.  The issue should be cleared.

    Note: After one login, I was able to click Visual styles and login normal again. 


    [Translate]
  • Next Page
  • Page 1 of 3
  • Recent Posts

    • Apple mobile device service failed to start
    • How To: SQL Server Reporting Date Formating
    • Unable to find Adobe PDF resource file. “Acrobat PDFMaker” “You must have administrator privileges to install these files. Please contact your local system administrator.
    • .NET Framework execution was aborted by escalation policy because of out of memory.
    • SQL Query: Determine view or stored procedures using tables, columns, functions, etc
    • iPhone OS4 Update for 3G
    • Because of a protocol error detected at the client (code 0×1104), this session will be disconnected. Please try connecting to the remote computer again.
    • Application Essentials Installer
    • Possible VB2008 BUG: My.User.IsInRole (When UAC ON)
    • Animated Busy Images (AKA AJAX Busy Spinner)
  • Recent Comments

    • Sam on Because of a protocol error detected at the client (code 0×1104), this session will be disconnected. Please try connecting to the remote computer again.
    • tun on Apple mobile device service failed to start
    • Untoro on Unable to find Adobe PDF resource file. “Acrobat PDFMaker” “You must have administrator privileges to install these files. Please contact your local system administrator.
    • Brian on Apple mobile device service failed to start
    • Daniel on How To: Firefox and Integrated Windows Authentication
  • Amazon Search

  • Sponsors

  • Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org

Tumblog WordPress Themes by Theme created by Obox

English English Afrikaans Afrikaans العربية العربية Беларуская Беларуская български български català català česky česky Cymraeg Cymraeg dansk dansk Deutsch Deutsch ελληνική ελληνική español español eesti eesti فارسی فارسی suomi suomi français français Gaeilge Gaeilge galego galego עברית עברית हिन्दी हिन्दी hrvatski hrvatski magyar magyar bahasa Indonesia bahasa Indonesia íslenska íslenska italiano italiano 日本語 日本語 한국어 한국어 lietuvių lietuvių latviešu latviešu македонски македонски bahasa Melayu bahasa Melayu Malti Malti Nederlands Nederlands norsk norsk polski polski português português română română русский русский slovenčina slovenčina slovenščina slovenščina shqipe shqipe српски српски svenska svenska Kiswahili Kiswahili ภาษาไทย ภาษาไทย Filipino Filipino Türkçe Türkçe українська українська tiếng Việt tiếng Việt ייִדיש ייִדיש 中文 (简体) 中文 (简体) 中文 (繁體) 中文 (繁體) powered byGoogle