A10: remove or disable 3g-card

Hello.
We are preparing a roll-out of Tecra A10 at several sites.
At some sites, we like to remove or disable the build-in 3g-card (Modell F3507g).
For disabling the fingerprint-sensor we are using a very old version of tsuruwin.exe, but I do no see how to disable the 3g-card. Queries for a newer or better version were not answered by our toshiba-sales-guy but its only 4 months so I just have to wait a little longer.
If the sales-guy does not respond, what are the options here?
How can it be physically removed (and reinserted 3 years later when the lease is up?)
Or is there a software solution? Not installing the driver is not an option because of our environment, for example we are allowing and supporting toshiba-unsupported operating systems, but some scripts do not behave well with a second "wired" local area connection (as windows calls them).. The scripts do work with one wired and unlimited "wireless" (as windows calls them).
Yes, because of the pre-existing scripts I can "fail" the A10, that may cause some red faces but at least my backside is covered by papertrail.
Thank you & bye.

Totty1973, you stated that not disable the driver allowed as an option.  Appears since you have a commerical sales order, best to consult with Toshiba tech support direct so as not to void the warranty naturally, and gain their workaround to meet business needs basedon server and software configurations.  Best for your paper trail and less stressful for your position.

Similar Messages

  • How do I remove a credit/debit card from my account? I ask because I currently have a VISA gift/debit card with 50 dollars on it, but the money has run out so I want to usea new card. Also, there is no 'None' check option for payment type on my account.

    How do I remove a credit/debit card from my account? I ask because I currently have a VISA gift/debit card with 50 dollars on it, but the money has run out so I want to usea new card. Also, there is no 'None' check option for payment type on my account.

    Depending on how you created your account, "None" may or may not be an option. I believe it has something to do with whether the account was made through an App Store request or the regular iTunes Store. For example, my account allows no card but my father's doesn't allow there to be no card.
    To change the card, go to your account settings and change the information to your new card, and hit save.

  • My ipod wont let me buy any apps because it says i have an invalid security code for my moms credit card but its the right one. and it also says i owe money for upgrading an app does anyone know how to remove my moms credit card cause i cant figure itout

    my ipod wont let me buy any appps because it says i have an invalid security code for my moms credit card but its the right one. and it also says i owe money for upgrading an app does anyone know how to remove my moms credit card cause i cant figure itout

    To change asccount information see:
    Changing Account Information
    For the code issue this may help.
    iTunes Store: My credit card's security code or zip code does not match my bank's records
    For a standard iTunes account you need a valid payment method even for free apps and app updates.
    What is making it think that you own money for an app upgrade?

  • How can I remove a Disabled Extension not compatible with Firefox 4.0.1? I just want to remove it... I don't want to wait for a compatible update. Why can't I remove it?

    When I upgraded from 3.XX to 4.0.1, it informed me that 2 extensions were not compatible and it never gave me the option to remove them. Firefox 4.0.1 disabled them and now I'm not able to remove them.
    Also they were added by Acrobat Pro X (Adobe Acrobat - Create PDF 1.0) and Nokia Ovi Suite (Firefox Synchronisation Extension 7.3.4.51).
    These extensions won't probably be updated unless they update the software that installed them. With this said, How can I remove the disabled extensions? Why it doesn't give me a button to remove them to start with?

    I think it's not the problem of compatibility. Extensions installed into Windows registry won't have a remove button ( or it's greyed out ). For these extensions, you can have a look into these keys:
    HKEY_CURRENT_USER\Software\Mozilla\Firefox\Extensions\
    HKEY_LOCAL_MACHINE\Software\Mozilla\Firefox\Extensions\
    If you are under a 64bit OS as I am, you may also try this key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Firefox\Extensions\
    And you may find the registry entries corresponding to the extensions you want to remove. Just export them to a backup.reg, then delete these entries. Firefox will do the rest, but it seems that fx still leaves extensions.rdf untouched. You can also delete the RDF entries corresponding to those extensions inside extensions.rdf
    cf: http://kb.mozillazine.org/Uninstalling_add-ons#Windows_Registry_extension
    BUT the Wow6432Node key wasn't mentioned in the above article
    I had to search the registry to find out the entry corresponding to a Fiddler2 extension, then I found the Wow6432Node key. I also saw the Nokia Ovi Suite entry beside the Fiddler2 entry.
    Hope it helps.

  • HT204053 how do i remove my credit/debit card info off of my itunes account?

    how do i remove my credit/debit card information from my itunes account?

    Depending on how you created your account, "None" may or may not be an option. I believe it has something to do with whether the account was made through an App Store request or the regular iTunes Store. For example, my account allows no card but my father's doesn't allow there to be no card.
    To change the card, go to your account settings and change the information to your new card, and hit save.

  • Remove GrantSendOnBehalfTo disabled user accounts - A novice at scripting

    Hello.  Can anyone help please
    In our exchange 2010 environment we have users who are granted send on behalf to access.  Obviously some users leave and I m finding that there are ghosts left behind which are causing issues with our team who add users into the grantsendonbehalfto
    option using the EMC.  Using the log view we coy out the command and then remove the disabled user from the command and then paste this into an Exchange Powershell command line.  This wrks because it is doing what Exchange EMC does which is rewrites
    the -GrantSendOnBehalfTo option in it new entirety.  
    The problem occurs because I need to remove these en-mass from approx 700 plus accounts.  
    I have tried to modify one user in order to get the script to work but it doesn't.
    This is the error message that happens when I run the script below against a known account with at least 2 disabled users in:-
    Couldn't find object "xxxxxxxx.xx.xxxxxxx.xxx.xx/DisabledUsers/2013-08/Gaynor Collins-Punter". Please make sure that i
     was spelled correctly or specify a different object. Reason: The recipient xxxxxxxx.xx.xxxxxxx.xxx.xx/DisabledUsers/2
    13-08/Gaynor Collins-Punter isn't the expected type.
        + CategoryInfo          : NotSpecified: (:) [], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : F6498844
        + PSComputerName        : ex02-0029.xx.xxxxxxx.xxx.xx
    Am running the script from my local PC
    This is the script I have used.
    # Gather info use get-mailbox -resultsize unlimited$mailboxes = Get-Mailbox zplew1
    Foreach($mailbox in $mailboxes)
    for($i = ($mailbox.GrantSendOnBehalfTo.count)-1; $i -ge 0; $i--)
    $address=$mailbox.GrantSendOnBehalfTo[$i]
    $addressString=$address.addressString
    If($addressString -like "*disabled*")
    $mailbox.GrantSendOnBehalfTo.removeat($i)
    $info >> "C:\Scripts\grantsendonbehalfto.csv"
    $mailbox |set-mailbox -GrantSendOnBehalfTo $mailbox.grantsendonbehalfto
    }If you requiere any more info please let me know.

    #1 - I recommend posting in xchange forum fo rhow to do this
    #2 - Wen an account is disabled most on the information in the object is hidden.  YOu would need to undelete to use the object.
    #3 - Get list as text and validaye al values are not deleted accounts.  Remove deleted and save back.
    ¯\_(ツ)_/¯

  • I can't download files or videos, I get the response "The object is blocked" As far as I know I have removed or disabled all security programs

    I am unable to play streaming video, and can't download anything. I have removed or disabled all of my security programs.
    == This happened ==
    Every time Firefox opened
    == About 2 weeks ago, downloaded most recent Windows service pack

    HI Phillip,
    On the other I am wholly unable to download the file from either Safari or Firefox
    Let's try one browser at a time. Open a Finder window. Select your Home folder in the Sidebar on the left. Then open the Library folder then the Safari folder. Move the Downloads.plist file from the Safari folder to the Trash. Relaunch Safari.
    If that didn't help, from your Safari menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.
    Now launch Firefox. From the Firefox menu bar click Firefox / Preferences then select the
    Advanced tab then the Network tab. Click: Clear Now.
    Relaunch Firefox.
    If nothing above has helped either browser, login to your Mac to another user account. Try Safari there. If you can't download files from Safari there, then it's a system wide problem. Boot from your install disc. Run Disk Utility to verify and if necessary, repair any errors on the startup disk.
    Help here for Disk Utility: The Repair functions of Disk Utility: what's it all about?
    Carolyn

  • Is there a way to remove or disable the "Clear List" button from the downloads list?

    Is there a way to remove or disable the "Clear List" button in the downloads list? I like to _keep_ my list populated with what I've downloaded but occasionally end up with it getting clicked on accident and lose the whole thing. Given that "Tools > Clear Recent History" dialog can accomplish the same thing I find Clear List to be irritating. So can I get rid of it in any way?
    == This happened ==
    Just once or twice
    == my brain lapsed on me ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4

    Hello Chris.
    # go into ''Help > Troubleshooting Information...''
    # click ''Open Containing Folder''
    # in the folder that appears (new windo in windows explorer), go into the folder ''chrome''
    # open the file ''userChrome.css'' with a text editor
    # at the end of the file, in a new line, add the following code:
    <code>
    button#clearListButton
    </code>
    I haven't tested this, but it should work flawlessly. You can always erase this line if you want the button back. This will only work on your Firefox profile. If you want these changes to span across all Firefox users on your computer, please tell me.

  • How to remove or disable "View Properties, Edit Properties Manage Permissions ..." from Shared/Personal Documents in My Site?

    Hello Community
        Using Sharepoint 2010 Server and the UI I created My Site.
        In My Content there is "Shared Documents" and "Personal Documents".
        On each one if you click the carat on the right, you will see
    a group of actions you can take.
        The actions include "View Properties, Edit Properties Manage Permissions" etc.
        How can I remove or disable "Manage Permissions" as an action on "Shared
    Documents and Personal Documents" on that My Site page and for when any
    other user creates a My Site page it not be there either?
        Thank you
        Shabeaut

    It is normal for users to have full control over the content in their personal My Site (this includes the Personal and Shared Documents folders). This allows them to manage access on their own site (e.g. for Shared Documents).
    On the MySite Host, users should not have the Manage Permissions right.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Should Apple make VoiceOver be permanently removable or disable-able?

    Should Apple make VoiceOver be permanently removable or disable-able? It is interfering with my games, I can no longer use F5 in my games because it just turns on voiceover every second time. Or Just make the command to turn it on editable?
    I'd really appreciate anyone with an apple support program asking them about this, because for some dumb reason they charge for support now.
    This is quite infuriating because there was no warning that I was going to lose my F5 button to something I don't need.

    P&#39;d Off Customer wrote:
    Should Apple make VoiceOver be permanently removable or disable-able? It is interfering with my games, I can no longer use F5 in my games because it just turns on voiceover every second time. Or Just make the command to turn it on editable?
    Do you mean like this?

  • HT4157 How do I get charges removed from my credit card?

    How do I get charges removed from,my credit card?  I was charged three times for my cellular plan.

    You'll need to talk to AT&T and/or your credit card company. Apple is not involved in the billing for cellular plans.
    Regards.

  • FontBook corrupted ? adding back Fonts (Removed), Fonts Disabled

    Hi everyone,
    similar to many other people i got some of my fonts screw up after MS Office installation.
    I tried to restore default fonts in FontBook, but it claimed that some fonts are missing.
    There are no fonts in my ~/Library folders: Fonts, Fonts (Removed), Fonts Disabled.
    However, there some in /Library: Fonts (Removed), Fonts Disabled which I would like to bring back.
    So the question is - how to do it?
    In /Library/Fonts Disabled   i see Arial, Timew New Roman, Verdana, Wingdings. I guess all of them were disabled by MS installation
    and then replaced by MS versions.
    My FontBook however does not show me those (e.g. I see no Times New Roman at all, so I can't re-enable it).
    I suppose FontBook database is corrupted, so I should restart with Shift in safe mode and then FontBook should be fine, right?
    What do I do with /Library/Fonts (Removed)  to bring in back in a propper way? Will FontBook also be able to see those and propose their restoration?
    I would appreciate if someone could say with confidence what to do step by step to add Fonts (Removed) and Fonts Disabled back in use. I don't have a TimeMachine running (yet, plan to do it soon), and I use Mac for work, so i would prefare to minimize risks of messing the whole thing up myself
    Thanks in advance,
    Regards,
    Denis.

    My 2¢
    Goto Versiontracker.com and download "Linotype FontExplorer X"
    Move your Font Book preferences from your (Library/Preferences) folder and then make an archive of Font Book (Control-click, create archive in the Finder)
    Delete the original.
    Now, install/launch FontExplorer X.
    There is an option to clean font caches during install - do that and your Mac will reboot.
    Now, there is an option under the tools menu in FontExplorer X that sets your system font folders back to defaults - do that.
    You should be good to go. FontExplorer X is free and an excellent font manager.
    If you have any questions, post back.
    Scott

  • I have an iMac on OSX 10.7.5 with Safari 6.1.6. Opening Safari produces a popup that cannot be removed, thus disabling everything else. How can I eliminate this?

    I have an iMac on OSX 10.7.5 with Safari 6.1.6. Opening Safari produces a popup that cannot be removed, thus disabling everything else. How can I eliminate this?

    Launch Safari with the Shift key held down. If that doesn't work, temporarily disconnect the computer from the Internet.
    (124400)

  • Do i need to remove the micro sim card when using home wi fi on ipad2

    do i need to remove the micro sim card from the i pad 2 when using wi fi sat home?

    thank you Ralph may i just ask you if your home wifi network is not working do you then have to actively seek the data connection?i suppose i am asking do you need to choose from a menu ?

  • I think recents in iso8 is a useless feature how do i remove or disable it?

    I think recents in iso8 is a useless feature how do i remove or disable it?

    settings, mail, contacts and calendar
    scroll down to the contacts part, 'show in app switcher' and turn it off

Maybe you are looking for

  • Edit Page Functionality not working in SP2013

    We are taking over a SharePoint 2013 development project which we believe was originally done with SharePoint 2010 and mabe customized with SharePoint Designer 2010 and now that we are to modify and or correct some of the other consultants pages in S

  • Upgrade IDS (4.1- 5.1)

    How to upgrade my IDS 4215 from v4.1 to v5.1? Does my ciscowork be upgraded at same time? Thanks

  • Faulty calculation

    I'm using PB kernel (see below) in an AIR / Flex application to speed up some calculations. The data I supply is a Vector.<Number> of floating point precision pixels. Every pixel is stored as three consecutive Numbers respectively for R,G,B channels,

  • Export RAW to JPG question

    Hello, Here is once again a problem that I guess has to do with color management, and I'm having a hard time figuring out my mistake. I'm editing my RAW files in Lightroom 5 and then export them to JPG (my settings are JPEG 100% / sRGB / no sharpenin

  • Cross project mappings

    Hello all, I have, probably a configuration, but I see it as a mapping question. I have two mapping workbench perfects Bank and Cash. The Bank project maps, among other things, a BankAccount object. In the Cash project, I need to map a CashDeposit ob