Renaming Computer

Recently I renamed my Computer to avoid the nasty TM 's glitch.
For those who are wondering, it has no effect on TM, except that TM renames the first subdirectory with the new computer name. Backups continue as usual.
I posted the following elsewhere but it got buried. I believe it is related at least to TM regarding changing the computer name.
After renaming the computer, in Sharing Preferences, I discovered that the original computer name is still around here and there.
If I select Internet Sharing and click AirPort Options, there is the old name.
And my shared folder still has the old name.
To relate this to TM to avoid a posting issue, the question is
When changing a computer name to prevent a TM glitch, is there a proper way and/or a single place to change all the original names at once?
If not, is there a recommended procedure for doing this?
For example, if I create a new shared folder (not really sure how to do that yet) or rename to old one, will it affect TM backups?
Message was edited by: nerowolfe

joshz wrote:
When I renamed my computer, I first disabled TM, then went to >System Preferences...>Sharing.
I unlocked the lock, and under "Computer Name:", I clicked "Edit".
I changed the name from there (IIRC).
I then restarted.
Exactly what I did.
The correct (new) name is reflected in all of the places you mentioned.
Not on my computer. Could be because it was an update from Tiger, though.
Airport name is the old computer name.
In FileSharing, Shared Folders, it has the original name: "First Last's Folder" It did not change.
My main concern was with TM, so the rest is just some heavy-handed hacking
Message was edited by: nerowolfe

Similar Messages

  • Can`t rename computer computer account is already exists

    We have domain on 2 DC`s(1 is GC and the 2nd is DC(Server 2008r2 ent)), Sometimes we need to replace old computers to the new ones. But they have to to be named like the old ones. So sometimes after removing old comuter from the AD, we still have an error
    message "Can`t rename, computer account is already exists" where else should we remove it????????

    Let's try the following:
    - configure the other domain controller as a Global Catalog - this should be the case in a single-domain forest
    - force the garbage collection by following http://blogs.technet.com/b/ad/archive/2009/03/24/taking-out-the-trash.aspx
    Check the list of deleted objects again afterwards.
    If this does not provide the resolution, restore the tombstone of one of the deleted computers (followhttp://technet.microsoft.com/en-us/magazine/2007.09.tombstones.aspx ),
    rename it , and delete it
    hth
    Marcin
    i`ve tried all of that except, configuring other Dc as GC, i ve found an article http://technet.microsoft.com/en-us/library/cc737269(v=ws.10).aspx it
    says that nothing would happen if two DC`s will be GC`s, but it vad not been written that this article aplies to win2008r2 only to earliests OS`s, so i`m affraid if something wrong will happen if i will promote another DC to GC, or i`m wrong??!
    I couldn`t force garbage collection, but i`ve enabled log as you said, and it seems to be no trouble with it....
    about the restoring tombstone.... i ve stuck on the step when i should search the deleted object, because search result "getting 0 entries"
    The same thing is about the article that Sandesh Dubey had linked "http://technet.microsoft.com/en-us/library/dd379509(v=ws.10).aspx"
    if i am not wrong, i should go to Configuration in tree of ldp and then to the Deleted Objects, but it says that there is no children.
    Please people be patience with me, i really am need your help!

  • How to rename computer account using Powershell 2.0

    Hi,
    For my Win7 deployment environment i need a script that can rename my workstation and it's Active Directory computer account.
    Is this possible using Powershell 2.0 included in Win7?

    I created a PowerShell script that, among other things, renames the computer.
    Function Rename-Computer ([string]$NewComputerName) {
    $comp = (gwmi win32_computersystem).Name.Trim()
    $ComputerInfo = Get-WmiObject -Class Win32_ComputerSystem
    Write-Host "Renaming computer...`n`tOld name: $comp`n`tNew name: $apnewname"
    #Start-Sleep (10)
    $ComputerInfo.rename($NewComputerName) | Out-Null
    After that you should reboot
    function RestartMachine{
    $os = gwmi win32_operatingsystem
    $os.psbase.Scope.Options.EnablePrivileges = $True
    $os.Reboot()
    Or better yet just use the `Restart-Computer` cmdlet built into PoSH.
    Now, the original post also said there was a need to rename the computer object n AD.  Below are two functions I use primarily for moving AD objects into their appropriate OU home.  While that doesn't immediately answer the question or solve the
    problem, I do believe you can rename the object you bind to using a very similar method.
    # This was created with the idea that machines would join the
    # domain automatically, into a predetermined OU. From there,
    # we would determine which OU the machine should be in, then
    # move it by calling this function.
    function MoveOU ($newOU) {
    $comp = (gwmi win32_computersystem).Name.Trim()
    $dumpOU = "CN=Computers,"
    # DC=dc,DC=net
    $root = [adsi]""
    #CN=Computers,DC=dc,DC=net
    $srcOU = [adsi]("LDAP://"+$dumpOU+$root.distinguishedName)
    #OU=fixedOU,OU=testOU,DC=dc,DC=net
    $destOU = [adsi]("LDAP://OU=fixedOU,OU=testOU,"+$root.distinguishedName)
    #CN=COMPUTERNAME,CN=Computers,DC=dc,DC=net
    $admin = [adsi]("LDAP://CN="+$comp+","+$srcOU.distinguishedName)
    #$admin.psbase | get-member | where-object {$_.Name -eq "MoveTo"}
    #System.Void MoveTo(DirectoryEntry newParent), System.Void MoveTo(DirectoryEntry newParent, String newName)
    $admin.PSBase.MoveTo($destOU)
    Function Move-OU ($SiteDC, $newOU) {
    $computerName = (gwmi win32_computersystem).Name.Trim()
    $_computerType = "CN=Computer,CN=Schema,CN=Configuration,DC=dc,DC=net"
    $path = "LDAP://$SiteDC/DC=dc,DC=net"
    $domain = "domain"
    $user = "user"
    $pass = "password"
    $de = New-Object System.DirectoryServices.DirectoryEntry($path,"$domain\$user",$pass)
    $ds = New-Object System.DirectoryServices.DirectorySearcher($de)
    $ds.Filter = "(&(ObjectCategory=computer)(samaccountname=$computerName$))"
    $res = $ds.FindAll()
    if ($res.count -gt 0) {
    # Machine has been found
    # Bind to the Computer Object in AD
    $oldComputerObject = New-Object System.DirectoryServices.DirectoryEntry($res[0].path,"$domain\$user",$pass)
    #$oldOU = $oldComputerObject.distinguishedName
    $oldOU = $oldComputerObject.Path
    Else {
    $strFilter = "(Name=$computerName)"
    $objDomain = New-Object System.DirectoryServices.DirectoryEntry("LDAP://$SiteDC/dc=dc,dc=net","$domain\$user",$pass)
    $objSearcher = New-Object System.DirectoryServices.DirectorySearcher($objdomain)
    $objSearcher.SearchRoot = $objDomain
    $objSearcher.PageSize = 1000
    $objSearcher.Filter = $strFilter
    $objSearcher.SearchScope = "Subtree"
    $colPropList = "distinguishedName", "Name"
    foreach ($i in $colPropList){$objSearcher.PropertiesToLoad.Add($i) | Out-Null}
    $colResults = $objSearcher.FindAll()
    #$colResults.Count
    if($colResults.count -gt 0) {
    foreach($result in $colResults) { $target = $result.Properties }
    $Error.Clear()
    #$oldOU = $target.distinguishedname
    $oldOU = [string]$target.adspath
    Else {
    write-host "`tWARNING: Unable to locate $computername in AD; Cannot move to correct OU"
    ErrorLog "WARNING: Cannot move object $computername to correct OU; Not found in AD."
    $destOU = New-Object System.DirectoryServices.DirectoryEntry("LDAP://$SiteDC/$newOU","$domain\$user",$pass)
    $oldComputerObject.PSBase.MoveTo($destOU)
    /\/\o\/\/ who has been known to dabble in scripting a bit (;) has also covered this subject here.  I would copy & paste, but I highly recommend reading it to get a better understanding of what's going on.  Plus, there's LOADS of useful information
    on that site!
    http://mow001.blogspot.com/2006/09/powershell-active-directory-part-11.html

  • Pass password to Rename-computer

    Hey all as the title says I need help to pass my AD credentials to rename-computer. The problem is when I put it in a loop it asks for them on every machine. How could I store it in a variable and then pass that to rename-computer. I don't think rename-computer
    had a password switch.
    Here's what I have now
    $psr = $PSScriptRoot
    $oldcomputers = Get-Content C:\Users\cody\Desktop\list.txt
    $newcomputers = Get-Content C:\Users\cody\Desktop\newlist.txt
    for($i=0;$i -lt $oldcomputers.Length ;$i++){
    if(Test-Connection -ComputerName $oldcomputers[$i] -BufferSize 16 -Count 1 -ea 0 -quiet){
    Write-Host $oldcomputers[$i]
    Rename-computer –computername $oldcomputers[$i] –newname $newcomputers[$i] -DomainCredential doamin\cody\ -Force -restart
    }else{
    Write-Host $oldcomputers[$i] -ForegroundColor Red
    Thanks!

    Hi,
    You can store a credential object this way:
    $cred = Get-Credential
    Run that, enter your credentials to save them in $cred, and then use $cred anywhere you need to pass the credentials.
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • SCCM2012 SP1: rename computer to MAC address during OSD

    Dears, i'm trying to rename the computers during the OSD process to it's MAC addresses. i want to do it by SCCM only without MDT integration because we have SCCM SP1 and MDT 2012 and we're tending to deploy Windows 8.1. and we're alredy deploying Windows 8.1
    with no issues. i'm using the following script: 
    Set env = CreateObject("Microsoft.SMS.TSEnvironment")
    Set ProgressUI = CreateObject("Microsoft.SMS.TsProgressUI")
    Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") 
    Set IPConfigSet = objWMIService.ExecQuery("SELECT MACAddress FROM Win32_NetworkAdapterConfiguration " & "WHERE IPEnabled=true" )
    ProgressUI.CloseProgressDialog  
    For Each IPConfig In IPConfigSet
      env("OSDComputerName") = Left(Replace(IPConfig.MACAddress,":",""),12)
      WScript.Echo env("OSDComputername")
    Next
    and i'm using it in a  package after apply operating system step as shown in the following snapshot:
    however the machine get named Minintxxxx and the step gives code 0 as a return code which means successfully completed.
    any help please?

    Dears, so sorry for the late reply. here's a part from the SMSTS.log for the setting computer name step with script in the upper post
    TSManager 11/6/2014 9:10:05 AM
    1244 (0x04DC)
    Expand a string: WinPEandFullOS TSManager
    11/6/2014 9:10:05 AM 1244 (0x04DC)
    Executing command line: smsswd.exe /run:PR1000DA cmd.exe /c cscript.exe ADEC_ComputerName.vbs
    TSManager 11/6/2014 9:10:05 AM
    1244 (0x04DC)
    [ smsswd.exe ] InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    PackageID = 'PR1000DA' InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    BaseVar = '', ContinueOnError='' InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    ProgramName = 'cmd.exe /c cscript.exe ADEC_ComputerName.vbs'
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    SwdAction = '0001' InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    ResolveSource flags: 0x00000000 InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    SMSTSPersistContent: . The content for package PR1000DA will be persisted
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    DownloadOnDemand flag is true. Attempting to download content locally for Package PR1000DA..
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Package Flags: 0x1000000 InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    GetDirectoryListing() entered InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Initializing HTTP transport. InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
       Setting URL = http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/PR1000DA.
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
       Address=http://APDC01CFG05.adec.ae, Scheme=http, Object=/SMS_DP_SMSPKG$/PR1000DA, Port=80.
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
       Setting Authenticator. InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Set authenticator in transport InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    WinHttp credentials set InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    CLibSMSMessageWinHttpTransport::Send: URL: APDC01CFG05.adec.ae:80  PROPFIND /SMS_DP_SMSPKG$/PR1000DA
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Request was succesful. InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    DAV response string is: 
     <?xml version="1.0" encoding="utf-8" ?><D:multistatus xmlns:D="DAV:"><D:response><D:href>http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/sccm?/PR1000DA/</D:href><D:propstat><D:status>HTTP/1.1
    200 OK</D:status><D:prop><D:getcontenttype/><D:supportedlock/><D:getetag/><D:creationdate/><D:iscollection>1</D:iscollection><D:resourcetype><D:collection/></D:resourcetype><D:ishidden>0</D:ishidden><D:displayname>http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/sccm?/PR1000DA/</D:displayname><D:getlastmodified></D:getlastmodified><D:getcontentlanguage/><D:getcontentlength>0</D:getcontentlength></D:prop></D:propstat></D:response><D:response><D:href>http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/PR1000DA/sccm?/ADEC_ComputerName.vbs</D:href><D:propstat><D:status>HTTP/1.1
    200 OK</D:status><D:prop><D:getcontenttype/><D:lockdiscovery/><D:supportedlock/><D:getetag/><D:getcontentlanguage/><D:iscollection>0</D:iscollection><D:creationdate/><D:resourcetype/><D:ishidden>0</D:ishidden><D:displayname>http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/PR1000DA/sccm?/ADEC_ComputerName.vbs</D:displayname><D:getlastmodified>Wed,
    05 Nov 2014 12:10:59 GMT</D:getlastmodified><D:getcontentlength>527</D:getcontentlength></D:prop></D:propstat></D:response><D:response><D:href>http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/PR1000DA/sccm?/Dump_Var.vbs</D:href><D:propstat><D:status>HTTP/1.1
    200 OK</D:status><D:prop><D:getcontenttype/><D:lockdiscovery/><D:supportedlock/><D:getetag/><D:getcontentlanguage/><D:iscollection>0</D:iscollection><D:creationdate/><D:resourcetype/><D:ishidden>0</D:ishidden><D:displayname>http://APDC01CFG05.adec.ae/SMS_DP_SMSPKG$/PR1000DA/sccm?/Dump_Var.vbs</D:displayname><D:getlastmodified>Sun,
    02 Nov 2014 10:13:02 GMT</D:getlastmodified><D:getcontentlength>125</D:getcontentlength></D:prop></D:propstat></D:response></D:multistatus>
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    List of files to be downloaded InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
      File: http://APDC01CFG05.adec.ae:80/SMS_DP_SMSPKG$/PR1000DA/sccm?/ADEC_ComputerName.vbs
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
      File: http://APDC01CFG05.adec.ae:80/SMS_DP_SMSPKG$/PR1000DA/sccm?/Dump_Var.vbs
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    GetDirectoryListing() successfully completed
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL'
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Downloaded file from http://APDC01CFG05.adec.ae:80/SMS_DP_SMSPKG$/PR1000DA/sccm?/ADEC_ComputerName.vbs to D:\_SMSTaskSequence\Packages\PR1000DA\ADEC_ComputerName.vbs
    InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Downloaded file from http://APDC01CFG05.adec.ae:80/SMS_DP_SMSPKG$/PR1000DA/sccm?/Dump_Var.vbs to D:\_SMSTaskSequence\Packages\PR1000DA\Dump_Var.vbs
    InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Download done setting progress bar to 100 InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    VerifyContentHash: Hash algorithm is 32780 InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Content successfully downloaded at D:\_SMSTaskSequence\Packages\PR1000DA
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Resolved source to 'D:\_SMSTaskSequence\Packages\PR1000DA'
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Command line for extension .exe is "%1" %*
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Set command line: Run command line InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Working dir 'D:\_SMSTaskSequence\Packages\PR1000DA'
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Executing command line: Run command line InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Process completed with exit code 1 InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Microsoft (R) Windows Script Host Version 5.8
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Copyright (C) Microsoft Corporation. All rights reserved.
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Input Error: There is no script engine for file extension ".vbs".
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Command line returned 1 InstallSoftware
    11/6/2014 9:10:05 AM 1740 (0x06CC)
    Entering ReleaseSource() for D:\_SMSTaskSequence\Packages\PR1000DA
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    reference count 1 for the source D:\_SMSTaskSequence\Packages\PR1000DA before releasing
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Released the resolved source D:\_SMSTaskSequence\Packages\PR1000DA
    InstallSoftware 11/6/2014 9:10:05 AM
    1740 (0x06CC)
    Process completed with exit code 1 TSManager
    11/6/2014 9:10:05 AM 1244 (0x04DC)
    TSManager 11/6/2014 9:10:05 AM
    1244 (0x04DC)
    Failed to run the action: Get OSDComputerName. 
    Incorrect function. (Error: 00000001; Source: Windows)
    TSManager 11/6/2014 9:10:05 AM
    1244 (0x04DC)
    i'm so confused about the "Input Error: There is no script engine for file extension ".vbs"." 
    any help please!!

  • Rename Computer with Predefine word with user prompt and PC serial number

    I would like help from the community to create a script to rename a computer for sysprep the following format example is below. The script to needs to have a predefined characters at the beginning followed by a prompt to user to add 1 character and the final
    step would be to append the  PC serial number please see example.
    Computer Name: ABC?%SERIALNUMBER%
    The (ABC) would be predefined at the beginning
    The ? would be a prompt for the user to enter the letter L or D (This is to determine Laptop or Desktop)
    The final is to add computer serial number.

    Hi,
    After checking your issue, I suggest you post your issue in Script Center forum for further assistance.
    Script Center
    http://social.technet.microsoft.com/Forums/en-US/category/scripting
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Cannot rename computer "owner"

    A female friend of mine just got divorced and, for reasons most people would understand, she would like to remove her married name ( call it Jane Jones ) from her Apple laptop and return it back to her pre-married name ( call it Jane Smith ). She has a PowerBook G4 with 10.3.9. Her machine is configured for a single user / admin.
    In System Preferences -> Accounts it is easy to change the label for the Sys Admin, and that successfully changes the displayed name ( Jane Jones -> Jane Smith ) when the login window appears after a restart. ( She is OK leaving the 'short name' alone as she is not concerned with the details of the underlying Unix OS ).
    However, even though the user names have been successfully updated ( displaying Jane Smith as the admin along with the 'Other' account ), it still shows "Jane Jones's computer" ( wrong name ) as a label just under the "Mac OS X" title in the login window. How does she change this label ?
    Thanks for any advice you can give on her behalf.
    Mark

    The Computer Name is changed in Sharing preferences. If she wants to change the name on her Home folder (the shortname) then she will need to download the utility, ChangeShortName - VersionTracker or MacUpdate - and use it to make that change. She cannot simply rename the Home folder.

  • Renaming Computer Breaks Remote Access To Desktop

    I have renamed a couple of computers that were setup using the http://connect and now the user is no longer able to access the computer using Remote Desktop. It is available once they log into the web page but when the click on the icon to remote in it
    basically times out saying it's not available. Any help would be greatly appreciated. Thanks
    Vern

    Can you ping the renamed stations from the server by name and by IP?
    Do the stations have static IP addresses or DHCP assigned?
    What is providing DNS for the network?
    What is providing DHCP for the network?
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • Renaming Computer: What will it Harm? iPhoto? iTunes?

    I want to rename my computer, it's this weird long name now. I know, I don't have to, I don't need to. I just want to. Besides all my design docs and image links, will iPhoto or iTunes be affected at all?
    thanks.

    Gee, Pagan, don't get your knickers in a wad!
    We are not disputing that this program can change the User Account short name. We are just clarifying what is what in this thread.
    And the what is what is that there are two things being mixed together here; changing the computer's name, which can be done at will and as often as one likes and the shortname from the User Account, which under normal circumstances cannot be changed without creating a mess.
    Which is why it takes a specially written program to change it and yet, as you pointed out so emphatically, still could make a mess and one should change it at one's own risk!
    Besides, if you were getting rid of the G3, why not just wipe the hard drive and install a fresh OS X?!?

  • Renaming computer & HD volume

    How does one go about renaming your computer? I can see that the name my computer is setup on looks like it is about 7 permutations old, with a bunch of parentheses behind the name, etc.
    Secondly, how does one go about renaming the volume of a HD? I have a bunch of computers that are all shared, it is is a serious pain in the neck to have all of the HDs named "Macintosh HD" which doesn't help me at all in identifying it.
    Any thoughts you may have would be great.
    Thanks

    you can rename your computer in sharing system preferences. You can rename your hard drive in the usual way from finder from an admin account. select it, press enter an rename, same as for renaming anything else via finder.

  • How to rename computer in os 10.8

    My late 2011 iMac somehow inherited the name of my previious computer - MacPro G5. How do I remane my curent computer to iMac new or something like that

    System Preferences->Sharing.
    Edit the Coumpuer Name: field

  • Rename computer on windows, now DB Console does not load

    I tried searching but found nothing on this.
    I have a virtual server with XE running. I then cloned it and started another. Now everything works and I can get to the DB Console.
    I change the computer name (in control panel - system), change the servername in listener.ora and tnsnames.ora to 127.0.0.1 and reboot.
    The database and listener starts up and I can get to the database via SQLPLUS, but going to the DB Console results in "IE cannot display the webapge". So it seems like the webserver isn't working anymore. Is this a known issue and what files do I need to update in addition to the ones I changed?
    Mathias

    Created on in the 10g XE forum instead. This ended up here by mistake. If yu have an answer, please answer in that thread and anyone that has the power is welcome to remove this post.

  • Automatically Renaming Computer after imaging

    Does anybody know how to do this? I have around 1000 computers i need to re-image and rename, but i cannot figure out how to do this through a utility or through a script.
    I am running a with Bombich's Net Restore on a fairly vanilla server setup.

    Thanks!, I hadn't thought of that and yes we do have remote desktop, so that is definitely an option.. i was just hoping to be even lazier!

  • Rename client computer via ARD and Automator

    Does anyone know of a method or action to rename (Computer name) Macs using AppleRemoteDesktop and Automator?
    I have over 700 laptops on a school network that I would like to rename based on a tab deliminated text file containing the all the mac (ethernet) addresses and the assocated user.
    I have tried sending a unix script and the text file via ARD to change the computer name via scutil, but it doesn't work consistently.

    You should be able to use AppleRemoteDesktop to rename the remote computer. Once you are connected to the remote computer, just go to "System Preferences...", and click on "Network" and change the computer name.
    If you are a non-administrator of ARD, you may need to turn on the access privilege to rename the remote computer. Go to "Preferences..." in ARD, and click on "Security" button, and turn the access privileges on.

  • Need help with a simple Rename/Join Domain/Install SCCM Client Task Sequence

    Good morning everyone,
    I need to create a very simple task sequence that will run an .exe that we have created that renames the computer based on a prefix-serialnumber...then restarts, adds it to our domain, restarts, and then installs the SCCM client.
    1) run rename program 
    2) join to domain
    3) install sccm client
    Can someone help me with the steps that will be required for this?
    Thank you very much!
    **note, these will not be formatted/have an OS installation ran on it with this task sequence.  The situation is that we are receiving 400+ custom configured laptops, and we're going to have to rename/join/install sccm on each...trying to simplify
    this
    any recommendations are greatly appreciated!

    Narcoticoo : Which boot image am i supposed to be using to insure that it boots into Standard Windows, NOT WinPE?  I have a standard x86 package / boot image i've been using.  If it boots up with this, it goes into WinPE (correct me if I'm wrong,
    for this seems to be what happens each time it boots off the boot image...it does not go into windows standard/full)
    When I go into properties of the one i'm using, and take the check off of "Use a boot image", where it will not boot to WinPE, it will not even show up in my list of available task sequences for
    1) when I PXE boot to try the task sequence, or
    2) when I try to make stand-alone media for this task sequence as you have suggested
    When I run the standalone media, the only log files I find are the following with errors:
    PackageID = 'MPS0014E' InstallSoftware
    12/8/2014 12:28:36 PM 2344 (0x0928)
    BaseVar = '', ContinueOnError='' InstallSoftware
    12/8/2014 12:28:36 PM 2344 (0x0928)
    ProgramName = 'MPHS - Rename Computer' InstallSoftware
    12/8/2014 12:28:36 PM 2344 (0x0928)
    SwdAction = '0002' InstallSoftware
    12/8/2014 12:28:36 PM 2344 (0x0928)
    IsSMSV4PlusClient() == true, HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\installsoftware\main.cpp,332)
    InstallSoftware 12/8/2014 12:28:36 PM
    2344 (0x0928)
    Configuration Manager client is not installed
    InstallSoftware 12/8/2014 12:28:36 PM
    2344 (0x0928)
    Process completed with exit code 2147500037
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    Failed to run the action: Install Package. 
    Unspecified error (Error: 80004005; Source: Windows)
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    Failed to run the action: Install Package. Execution has been aborted
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    Do not send status message in full media case
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    Failed to run the last action: Install Package. Execution of task sequence failed.
    Unspecified error (Error: 80004005; Source: Windows)
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    Do not send status message in full media case
    TSManager 12/8/2014 12:28:36 PM
    1544 (0x0608)
    Execution::enExecutionFail != m_eExecutionResult, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,866)
    TSManager 12/8/2014 12:43:48 PM
    1544 (0x0608)
    Task Sequence Engine failed! Code: enExecutionFail
    TSManager 12/8/2014 12:43:48 PM
    1544 (0x0608)
    TSManager 12/8/2014 12:43:48 PM
    1544 (0x0608)
    Task sequence execution failed with error code 80004005
    TSManager 12/8/2014 12:43:48 PM
    1544 (0x0608)

Maybe you are looking for

  • Simple Java Question (Hopefully)

    I'm not sure if anyone out here is familiar with ClearCase, I'm sure there are some, but I am trying to create some basic classes that perform various cleartool shell out commands, one of which returns the some information about ClearCase code reposi

  • How to use Form Procedure/Function in Jdeveloper

    As we use in Oracle Form Procedure and Functions, but in Jdeveloper how can I use....??? Like in Oracle Forms after saving following auto number generate in Customer table...... SELECT MAX(CUST_CODE)+1 INTO :cust_code FROM CUSTOMER but in Oracle Jdev

  • Limit order confirmations

    Hi All, I have an issue with the limit service order, confirmations which were made to it are not replicating in R/3 PO history. Can any one have the idea about whether we can make the confirmations for a service PO after its's time period. Example:

  • Assign audio to a button

    Hi there I am building a complex dvd with loads of different menus. On one of the menu, I am trying to assign a specific audio to a button without ever leaving the menu page so that I keep access to the other button at all time. Each button needs to

  • Compiling order/graphics won't display

    I am writing a code which requires a real time print to screen of graphics. I use the validate() command after each graphic should be printed but the program doesn't print until it reaches the end and then prints all the graphics at once. It definite