Jump to content

drumzrule

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by drumzrule

  1. I'm pretty sure I didn't do that (drag files while holding shift), but you never know. I don't think it's a bug in nlite, but on the other hand I don't know what else could have caused it. The thing is subdirectories were affected also, but none of the folders were renamed (at least any that I saw; I didn't check them all, just ran the script). The main thing is if it happens to anybody else hopefully they'll see this and be able to fix it. I'm pretty sure I didn't do that (drag files while holding shift), but you never know. I don't think it's a bug in nlite, but on the other hand I don't know what else could have caused it. The thing is subdirectories were affected also, but none of the folders were renamed (at least any that I saw; I didn't check them all, just ran the script). The main thing is if it happens to anybody else hopefully they'll see this and be able to fix it.
  2. I'm not sure if it's a bug in the program or something I did, but somehow (almost) every file had "Copy of " before the actual name of the file. I did all of the steps except Integrate Drivers and Unattended Setup. When it got to the Create ISO page I skipped creation and clicked Finish. Later when I came back it wouldn't let me get past the "Locate the Windows installation folder" page. That's when I discovered several of the files started with "Copy of ". Sadly every file in i386 was like that too. I wrote a little bash script to rename them all. If this happens to anyone else hope this helps. #!/bin/sh rename () { for somefile in `find . -maxdepth 1 -name 'Copy of *' | cut -d " " -f 3-`; do #echo $somefile mv "Copy of $somefile" $somefile done } search_dirs () { rename for somedir in `ls`; do if [ -d $somedir ]; then cd $somedir search_dirs cd .. fi done } search_dirs
×
×
  • Create New...