Tecra All Models - How to set Asset Tag

Hello,
For the past year we have used a tool to set the asset tag on toshiba notebooks. It runs from an external floppy drive, but the disk is overwritten en we do not have any copies of this tool.
I am pretty sure one of my colleagues downloaded this tool from the toshiba site but we are unable to find it anywhere. Can someone provide a download link or an alternative tool wich is able to set and display a notebook's asset tag.
The commands we used in this tool are
assettag /da
assettag /sa
Hope you can help
Kind Regards,
Sander74
_**UPDATE** The filename of this tool is assettag.exe**_
Message was edited by: Sander74

Thanks for your answers.
We tried to undelete the content of the overwritten floppy but we were not able to restore all data. We did manage to restore some text files, htm file and a diz file. I'll post the content below.
As you can see there a comments that suggest that this is indeed a toshiba tool. Perhaps someone reading this has better searching skills then i do.
*_CONTENT OF ASSETTAG.EXE_*
DMI Asset Tag Utility Version 1.02.1
Copyright(c) 1999 Toshiba America Information Systems
This procedure has installed the assettag program to your
hard disk. It has copied the following files to the
directory C:\Asst_tag
AssetTag.diz
assettag.exe
AssetTag.htm
AssetTag.txt
ATINST.bat
Disk1.id
readme.txt
tosh001.gif
tosh002.gif
For more information view the assettag.htm file.
*_CONTENT OF ASSETTAG.HTM_*
SM BIOS Asset Tag Utility Version 1.02.1
Copyright (c) 1999 Toshiba America Information System. All rights reserved.
The SM BIOS Asset Tag Utility displays a variety of useful data fields from the SM BIOS. In addition, is capable of setting or changing the value of the asset tag field of the SM BIOS. Since the asset tag field is in the BIOS, the hard disk may be reformatted and reinstalled without effecting the field's contents.
This program is a command line, non-interactive program, suitable for use in batch files and other automated environments. It is a real mode DOS program, and can not be run in pure 32 bit environments such as Windows NT.
usage: ASSETTAG <switch> [string]
Switch
Usage
/DA
Display asset tag string
/DM
Display system manufacturer string
/DP
Display model string
/DC
Display chassis serial number string
/DS
Display system serial number string
/SA <string>
Write asset tag string
/F <filename>
Write asset tag string based on contents of specified serial number - asset tag mapping file (see format below).
The Asset Tag has a maximum length of 31 bytes.
Examples:
ASSETTAG /SA 12345
ASSETTAG /SA "123 456" (quotes to embed spaces.)
ASSETTAG /F ATLIST.DAT
The /F switch specifies that the asset tag to be written to the BIOS should be obtained from a file, the name of which is given as a parameter following the /F switch. This file contains a list of serial numbers and asset tags in the format:
Serial number white space Asset tag
Each line should contain a system serial number, with no leading white space. Following the serial number, one or more white space characters (space or tab) delimit the serial number from the start of the asset tag. The first following non-white space character is taken to be the start of the asset tag, which will continue until the end of the line. Thus, asset tags may not begin with white space, but can contain almost any character thereafter.
For example:
12345678 FA99485
TE992837 ACCT992
30899283 Loaner Unit
If the lines above were placed in a file and used by the assettag program, then a PC with the serial number of 12345678 would be set with the tag FA99485. A PC with the serial number 30899283 would be set with the asset tag value of Loaner Unit.
Kind Regards,
Sander74

Similar Messages

  • Unable to set asset tag number in bios 1.17 on Thinkpad Yoga S1

    Hi I have a bunch of Thinkpad Yoga Machine Type 20CD002UUS and I've been trying to set the asset tag in the bios.  According to support I can use this tool: http://support.lenovo.com/us/en/products/laptops-a​nd-netbooks/thinkpad-yoga-series-laptops/thinkpad-​...
    It was working great on a bunch of machines and then just stopped.  I realized the only difference was the bios version.
    On the ones that WORKED the bios is 1.16, the ones that DO NOT WORK are bios 1.17.
    Has anyone has this issue?  It doesn't say anything about the BIOS version being an issue, but it's realy annoying.
    Anyone have any pointers?
    Machines are running Windows 8.1 64 bit
    Solved!
    Go to Solution.

    Good day and welcome to the community.
    Sorry you're having difficulties.
    Looking at the v1.17 BIOS readme: http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mob​iles/gquj12ww.txt
    I see one item that may be related, stressing "may":  "(New) Improved the UEFI BIOS security feature."
    Wish I could offer more.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • JTable Model   --  How to set the width of columns

    Hello,
    This project of mine is due in 2 days. :(
    I am using AbstractTableModel and I can't figure out how to set the columns' width inside my JTable?
    This following code does not work.
    int vColIndex = 1;
    TableColumn col = table.getColumnModel().getColumn(vColIndex);
    int width=399;
    col.setPreferredWidth(width);Please remember, that I'm using AbstractTableModel and not just simple JTables.
    Thanks in advance.

    The DataModel (AbstractTableModel or otherwise) has nothing to do with the table column size. The DataModel is used to store data.
    When you create a JTable using a DataModel then a TableColumn is created for each column in the DataModel using a default column size. The normal order of creation would be:
    TableModel model = new DefaultTableModel(...);
    JTable table = new JTable(model);
    Now that the table and table columns are created you can change the size of the columns:
    int vColIndex = 1;
    TableColumn col = table.getColumnModel().getColumn(vColIndex);
    int width=399;
    col.setPreferredWidth(width);
    So your code looks ok.
    However, if somewhere in you code you do:
    a) table.setModel(...)
    b) fireTableStructureChanged();
    then the table columns are recreated based on the current DataModel and the table column size would be reset to the default values.

  • How to set xml tag to nothing in indesign using applescript?

    Hi guys,
    I need set xml tag to nothing(for tables)  in indesign using applescript.
    Please help me.

    Hi,
    tell application "Adobe InDesign CC 2014"
        tell active document
            if (count of story) > 0 then
                tell story 1
                    if (count of tables) > 0 then
                        tell table 1
                            set tag_name to associated XML element ----------------> i can't get xml  tag, i am receiving the  xml tag is nothing.
                            if (tag_name = nothing) then
                                display dialog ("This table has no tag")
                            else
                                set markup_tag to markup tag of tag_name
                                set n to name of markup_tag
                                display dialog ("Tag name is " & n)
                            end if
                        end tell
                    end if
                end tell
            end if
        end tell
    end tell
    I can't get xml tag for table,  i am received nothing

  • How to set "dooutboundwss" tag to true

    Hi,
    I need to set dooutboundwss tag to true .
    Since this needs to be set, to send the wssecurity username token from business service to the endpoint...
    Can any one pls help it ASAP?

    Create a Replace in your message flow of the Request Action.
    Set the XPath value to ./ctx:security/ctx:doOutboundWss
    Set the In Variable to outbound
    Set the Expression to 'true'
    Replace Node Contents checkbox selected.

  • JSF - How to set up tag libs in web.xml file?

    Hello all,
    I have a doubt... that in an JSF application we are using two tag libraries, one for the core and other for html components. Both these *.tld files are jared inside "jsf-impl.jar" file.
    The problem is that when i start the web server (Tomcat4.0.6) the console shows that taglib tag must be configured... this means that we have to specify the "<taglib></taglib>" elements in the web.xml file of the jsf application... but how do configure the jar file...
    please guide...

    Putting the JAR files in WEB-INF/lib and using the standard URIs in the taglib directives are all that's needed; the container locates the TLDs in the JAR files at startup.
    If this doesn't work, it's a bug in the container. You may want to upgrade to a later version of Tomcat; 4.0.6 is ancient, and may very well be buggy in this area.

  • Tecra M11 and asset Tag

    Hi,
    I'm looking for how to set the asset tag information int the smbios of a toshiba tecra M11 laptop ?
    I have found this post LINK:[http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=40167] but the tool assettag.Exe don't keep the tag after reboot.
    Any idea please ?

    I dont know if you have European notebook model but here in Europe this tool is not available for customers and this stuff must be done by authorized service provider.
    If you want you can try to contact nearest Toshiba service provider and ask for help.
    As you can see in other thread last user has posted link to Toshiba US support page.

  • How to set the report path in a model plugin

    I am trying to figure out how to set the report path in a process model plug-in. I can seem to figure out how to get access to it. It seems like this would be a reasonable thing to do since the plug-ins are for results processing. Does anyone know how to do this? We typically use the Sequential process model but I am trying to keep my plug-in as independent of that as possible. 
    Thanks.
    Solved!
    Go to Solution.

    If I understand, you want your plug-in, when enabled, to alter the settings of any other instances of the NI report plug-in such that their reports share the same directory as your plug-in is configured to use.
    If so, your plug-in can access and modify the settings of all other plug-in instances. All instances are passed to all plug-in entries point in the plugins array sub-property of the ModelConfiguration parameter. You can iterate through this array. Any element of the array with a Base.SequenceFilename equal to "NI_ReportGenerator.seq" is an instance of the NI report plug-in. Its report options are stored in the element under PluginSpecific.Options.
    You can change the report options to what ever you want. Note that the ReportOptions model callback is called from the Initialize model-plugin entry point, so you might want to ensure that your changes are applied after that, so they aren't overwritten. To do that, you could make your changes in the the Initialize entry point of your plug-in, and ensure that your plugin runs last. To make it run last, you could set the FileGlobals.ModelPluginComponentDescription.Default.Base.RunOrder in your plug-in file to a value greater than 0, such as 1.0 (see TestStand Help>>Fundamentals>>Process Model Architecture>>Process Model Plug-in Architecture>>Structure of Plug-in Sequence Files>>Model Plug-in Entry Points>>Order of Entry Point Execution at Run Time).

  • How to set up Asset categories

    HI ALL,
    Can anyone please tell me how to set up asset categories in FA Modules

    Hi
    first u have to setup your CATEGORY_FLEXFIELD on key flexfields, define segments that u are gonna use as a category, u can defina as many as u need. For each segment u have defined u have to create a value set.
    Hope been helpfull
    Renan D.

  • I have three iPads and one iPod and one iPhone.  How can I message between them without sending the message to all of them.  You send the message to your email address but all of them are set up und one account.

    I have three iPads and one iPod and one iPhone.  How can I message between them without sending the message to all of them.  You send the message to your email address but all of them are set up under one account.

    You can have a different receiving email in the Messages app on each device : Settings > Messages > Receive At . I'm not sure that there is a different way to have the message only go to one device.

  • Once and for all: How to set up and use SSH

    Yes, I know ssh has been discussed on and off, but never in its entirety; and yes, there are step by step instructions on the www, but at one point or another they skip a crucial instruction that would be necessary for unix-dummies (e.g. how to save and close the nano-editor in Terminal). So, please pardon my question:
    There are several points I'd like to ask for ssh-connecting two macs on a local network:
    1) In terminal-file-"connect to server" you can ask for an ssh connection to be set up. For this to work, do I need to create private and public keys first? If so, how? Please point me to a reliable and step-by-step instruction site.
    There are some free ssh-utilities out there, but their documentation is just not helpful enough for a UNIX-dummy.
    2) Apparently I managed to connect via ssh once (from the terminal, see point 1) to a local server (allowing remote connection set to ON at the server). But then, when I connected to that server from the client's finder and tried to get into my user account on that server it told me that no secure connection could be established. What's wrong here? Do I have to continue working from within the terminal to use this connection? That would be difficult for an average MacUser.
    3) What is the security advantage of an SSH connection on a local wireless network (Airport Base Station) over WPA2, if at all?
    4) And how to set up an ssh-connection over the internet cloud to safely build a remote control/desktop sharing connection, e.g., a friend's Mac when she has a problem?
    Thanks for your consideration.

    First I'm not sure what your goals are.
    1) In terminal-file-"connect to server" you can ask for an ssh connection to be set up. For this to work, do I need to create private and public keys first?
    If you have ssh keys, you can do this without passwords. If you have not exchanged keys with the remote system, you will be asked for the password of the user you are attempting to login as.
    If so, how? Please point me to a reliable and step-by-step instruction site. There are some free ssh-utilities out there, but their documentation is just not helpful enough for a UNIX-dummy.
    Log into the remote system. This could be via ssh.
    On the remote system, run the following command to generate an ssh key for that remote system:
    ssh-keygen -t rsa
    Generating public/private rsa key pair.
    Enter file in which to save the key (/Users/username/.ssh/id_rsa): <<take default>>
    Created directory '/Users/username/.ssh'.
    Enter passphrase (empty for no passphrase): <<enter nothing>>
    Enter same passphrase again: <<enter nothing again>>
    Your identification has been saved in /Users/username/.ssh/id_rsa.
    Your public key has been saved in /Users/username/.ssh/id_rsa.pub.
    The key fingerprint is:
    aa:bb:cc:dd:ee:ff:gg:hh:ii:jj:kk:ll:mm:nn:oo:pp [email protected]
    This will generate an ssh key for the remote system. This could be any system that support ssh, such as a Unix system, or another Mac.
    Copy the id_rsa.pub file from the remote system to your Mac. When I say "your Mac" I mean the one that you want to make the ssh connection from. The id_rsa.pub is found in the remote system's ~username/.ssh/ directory.
    Append the copied id_rsa.pub to your Mac's ~himbear/.ssh/authorized_keys2 file
    cat id_rsa.pub >>~himbear/.ssh/authorized_keys2
    Now when you ssh to that specific remote system, it will NOT ask for a password. The first time you ssh to any system, ssh will ask if the system is really the system you thing it is. But once you say "yes", it will not ask that question again.
    Repeat for every remote system you wish to log into using an ssh key.
    2) Apparently I managed to connect via ssh once (from the terminal, see point 1) to a local server (allowing remote connection set to ON at the server). But then, when I connected to that server from the client's finder and tried to get into my user account on that server it told me that no secure connection could be established. What's wrong here? Do I have to continue working from within the terminal to use this connection? That would be difficult for an average MacUser.
    MacUser. A flash from the past, as in the MacUser magazine.
    ssh is not used by default when you make connections. If you want an ssh connection, you have to establish it intentionally.
    ssh can be used to pre-establish a tunnel (or tunnels) that other services can use. Once an ssh tunnel is establish, connections to local host's tunnel port will be connected to the specified remote port. For example:
    ssh -L 5901:localhost:5900 [email protected]
    will establish a tunnel that VNC can use. The VNC client would connect to localhost display 1 or port 5901.
    ssh allows multiple -L tunnels to be specified on the ssh command line.
    3) What is the security advantage of an SSH connection on a local wireless network (Airport Base Station) over WPA2, if at all?
    Inside you home. Not much. Unless of course you do not trust the other members of your family. That is to say, others having your WPA2 password, and are thus on the inside, and can sniff you packets.
    4) And how to set up an ssh-connection over the internet cloud to safely build a remote control/desktop sharing connection, e.g., a friend's Mac when she has a problem?
    If you are using the Mac OS X Leopard built-in *Screen Sharing* and you are connecting to another Mac's built-in Leopard System Preferences -> Sharing -> Remote Management (Tiger's Apple Remote Desktop), then in the *Screen Sharing* preferences, is an "Encrypt all network data" option.
    If you wish to set this option in advance, you can launch *Screen Sharing* by double clicking on System -> Library -> CoreServices -> Screen Sharing.app
    You can *Screen Sharing* connections over the net using iChat. This is one of the easiest ways to take control of their system. Of course they need to cooperate. I use a Free AOL Instant Messager (AIM) account for my iChat connections. And as a side benefit you can text, audio chat and/or video chat with the person at the other end.
    If you are NOT using the build-in Mac OS X *Screen Sharing* and/or you are NOT using the build-in remote Mac OS X remote management server, then this is a situation where an ssh tunnel would be a very good idea.
    However, setting up an ssh tunnel between 2 systems across the internet gets complex.
    In this case you might want to consider using something like LogMeIn.com which will deal with all those nasty home routers without needing to to do nasty router configurations, and it will be a secure connection. LogMeIn.com will not be as fast as a *Screen Sharing* connection or a VNC connection, but it will be secure and easy to establish. Again, this is only if you can not to Mac to Mac *Screen Sharing* using built-in Mac OS X remote desktop.
    Now if you want to roll your own ssh tunnels for VNC, then I'm just going to outline the things you need to do.
    If the remote system is behind a home router, you need to configure that remote home router to "Port Forward" port 22 on the Internet side to port 22 on the target Mac. Bonus points if the internet side using a high number port to discourge net bots from knocking on your door. Use the ssh -p 12345 option to connect to the high numbered port that is forwarded to port 22 of the destination Mac.
    On the remote Mac you need to run a VNC server. If this is a Mac, then Leopard System Preferences -> Sharing -> Remote Management (Tiger's Apple Remote Desktop). If it is not a Mac, then for Windows, TightVNC, UltraVNC, RealVNC are possible options. Linux has a built-in vncserver, or you can install x11vnc which has the advantage of displaying the desktop screen.
    Once you can access the remote system, you use an ssh command like the following:
    ssh -p 12345 -L 5901:localhost:5900 remote.system.address
    You can get the remote system's address by having the remote system surf over to http://whatismyip.com. Then they can tell you the IP address.
    If you are going to be doing this a lot, you can get a free no-ip.com or dyndns.org dynamic DNS name for the remote system, and the remote system can run a dynamic DNS client (available from no-ip.com or dyndns.org) which will keep the dynamic DNS name updated as the remote person's ISP change's their IP address.
    Finally, now that you have an ssh tunnel for VNC traffic, you have your VNC client connect to
    Address: localhost
    Port: 5901
    Depending on your VNC client you may need to specify Display 1 instead of Port 5901. Or if you do not get a Display or Port option you specify localhost:5901

  • I bought my wife an iPad, iTV and iPhone and everything works great. But now I'm getting an iPhone and I'm not sure how to set it up. So far all our iTunes purchases have been under her account. So how do we share everything, but have different accounts?

    Things have just kind of escalated. We started with the ipad and she really liked it. Then we were given an itv and it worked so nicely with the ipad, that we decided to get her an iphone. We've been buying music, tv shows, movies, taking photos, looking at them on the tv using photostream. But now I'm getting an iphone and plan to by a macbook or mac mini some time soon, and I'm wondering how I can setup my own account but still have all this really nice seamless sharing across devices. If I buy an album on my phone, I'd like to be able to play it on the itv (which is setup with my wifes account). And so forth.
    I hope I've explained my concern and someone can point out how to set things up so that things remain as seamless and easy as they are now.
    Thanks.

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    SHARING iTunes MUSIC
    http://macmost.com/five-ways-to-share-music-in-itunes.html
    Also... Create your Own Apple ID for Your iPhone...
    It should be Noted that anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    Apple ID FAQs  >  http://support.apple.com/kb/HT5622
    And... Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    See Here for  >  How to Use Multiple iDevices with One Computer
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha

  • TS2755 Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help of how to set up messages on each

    Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help on how to set up messages on each device separately and to start using messages app on each device independently. Thanks

    search google for "iphone remove picture from contact"

  • How to set up individuals on family sharing for using Facetime - all are saying it's me!

    I've set up family sharing for my wife and kids. Currently all the devices are set up as me and linked to my email address and phone number. how do i separate them onto my wife's email / mobile no and then separate my kids (all under 13) so they can use Facetime etc? thanks!

    Hello Mevster,
    Welcome to Apple Support Communities.
    It sounds like you want to change the Apple ID used by services, like FaceTime, on some iOS devices. Take a look at the article linked below, it provides a lot of information that should answer your question and walk you through the process of changing the Apple ID that's used for services on iOS devices.
    Apple ID: What to do after you change your Apple ID - Apple Support
    Take care,
    -Jason

  • I cannot figure out how to set my apple id to use: itunes (two of accounts), apps store and Itunes store. How do I make one password that will be recognixed by all these devices?

    I cannot figure out how to set my apple id to use: itunes (two of accounts), apps store and itunes store. How do I make one password that will be recognized by all these devices? My apple id is constantly not working.

    Hi Lrwill,
    If the apps that are on your son's iPad were purchased under his Dad's Apple ID, then signing your Apple ID onto the iPad will not help you with updating those apps.
    Also, if the iPad was sync'd with his Dad's iTunes library, then hooking it up to your computer/iTunes library, will require you to reset the iPad, and everything that was loaded under the other Library and Apple ID will be wiped out.
    Can you provide a little more info about what was set up under which Apple ID and what iTunes library the iPad was sync'd with?
    Cheers,
    GB

Maybe you are looking for

  • Report 6.0: Help !!

    Hi ! I have a real problem with printing the reports. Report Builder doesn't save the size of printable area and while printing I have a report area clipped. Help, please. null

  • Using a For loop to call one array element at a time

    I have been working on a VI that reads a GPS unit, parses the data, outputs what I need, compares the actual GPS location to the desired location, determines a desired heading and moves on from there.  My question pertains to the number of desired lo

  • G/L Accounts for Masters

    If there are N number of Masters  think 4000 masters consisting of several groups, after creating all Masters shall we also Define G/L accounts for all 4000 Masters. After Defining shall we assign also . If I am wrong please guide me. Regards P.Naren

  • Accordion section with Title and icon

    Hello Experts, I have an accordion control in my application. Can we have an icon along with the title in the AccordionSection? Something which is achievable in Panel title since it accepts sap.ui.core.Title in setTitle but accordionSection takes Str

  • Displaying a temporary image over another image

    Hello, I am writing a program where I need to draw a filled rectangle over another image then disappear (without drawing on to it). The Image is on a JPanel. Obviously I can not use Graphics.drawImage because that will permantley draw the rectangle o