Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
I unfortunately bought Little Flocker and did not install it before it was sold.
I have a registration key (file) which is hidden (starts with a dot).
Little Flocker just won't see (recognize) it.
Anyone has an idea ?
Thanks in advance.
Michael
 
The long way to show hidden Mac OS X files is as follows:
  1. Open Terminal found in Finder > Applications > Utilities.
  2. In Terminal, paste the following (Between the single quotes): 'defaults write com.apple.finder AppleShowAllFiles YES'
  3. Press return.
  4. Hold the 'Option/alt' key, then right click on the Finder icon in the dock and click Relaunch.
 
Last edited:
The long way to show hidden Mac OS X files is as follows:
  1. Open Terminal found in Finder > Applications > Utilities.
  2. In Terminal, paste the following: defaults write com.apple.finder AppleShowAllFiles YES.
  3. Press return.
  4. Hold the 'Option/alt' key, then right click on the Finder icon in the dock and click Relaunch.
I did just that ... to no avail (unfortunately)
 
The long way to show hidden Mac OS X files is as follows:
  1. Open Terminal found in Finder > Applications > Utilities.
  2. In Terminal, paste the following: defaults write com.apple.finder AppleShowAllFiles YES.
  3. Press return.
  4. Hold the 'Option/alt' key, then right click on the Finder icon in the dock and click Relaunch.

Well, that is indeed the long way of achieving it.
Try pressing CMD + SHIFT + . (dot) in the Finder.app. It toggles hidden files. Quicker and easier.
 
Well, that is indeed the long way of achieving it.
Try pressing CMD + SHIFT + . (dot) in the Finder.app. It toggles hidden files. Quicker and easier.

Thanks for that tip. That indeed works great. My concern though is to make Little Flocker Registration procedure see (recognize) the License Key which is in a hidden file (beginning with a dot). It just won't see it.
 
I did just that ... to no avail (unfortunately)
You should have gotten a "Your Little Flocker Registration Key" email. You should find the <yourname>.littleflockerlicense file attached to it. That's your license.
[doublepost=1498336702][/doublepost]
Thanks for that tip. That indeed works great. My concern though is to make Little Flocker Registration procedure see (recognize) the License Key which is in a hidden file (beginning with a dot). It just won't see it.
After downloading the <yourname>.littleflockerlicense from your email, it should not be hidden/starting with a dot.
 
Last edited:
Thanks for that tip. That indeed works great. My concern though is to make Little Flocker Registration procedure see (recognize) the License Key which is in a hidden file (beginning with a dot). It just won't see it.
You should have gotten a "Your Little Flocker Registration Key" email. You should find the <yourname>.littleflockerlicense file attached to it. That's your license.

I received a license indeed called ".littleflockerlicense" (without <yourname> before the dot.
Could "your name" be my email address (or my name) and how can I rename a file that starts with a dot ?
[doublepost=1498337365][/doublepost]
I received a license indeed called ".littleflockerlicense" (without <yourname> before the dot.
Could "your name" be my email address (or my name) and how can I rename a file that starts with a dot ?

THANK YOU. i found the way to rename it (add the part before the @ of the email address to which they sent me the registration key). I then could register it all right. : )))
 
I received a license indeed called ".littleflockerlicense" (without <yourname> before the dot.
Could "your name" be my email address (or my name) and how can I rename a file that starts with a dot ?
<yourname> was just a placeholder for something like your name ;)
There is no difference at all between renaming a hidden file or a visible file.
Just right-click at the file, click Rename and remove the . (dot) at the front, press enter.
Voila. The file should not be hidden anymore.
 
<yourname> was just a placeholder for something like your name ;)
There is no difference at all between renaming a hidden file or a visible file.
Just right-click at the file, click Rename and remove the . (dot) at the front, press enter.
Voila. The file should not be hidden anymore.

You led me on the right path and I succeeded in registering it. They probably forgot to add my name before the dot. Thank you again. It is indeed unfortunate that this program will not be supported any more. I have version 1.4.8 (4a1), do you know where I can find the last version (1.6.4 ) ?
 
Thanks for the update, looking forward to where you will take what is already a useful product
It is now nearly end of June and I have heard nothing from anyone about this product or any updates or replacement product for existing users, any chance someone knows what is happening or are we left high and dry ?
 
2. In Terminal, paste the following: defaults write com.apple.finder AppleShowAllFiles YES.
I did just that ... to no avail (unfortunately)

Entirely too late, but this is for anyone arriving here later still. PinkyMacGodess’s advice is almost perfect, there’s just a stray dot at the end of that command, the defaults tool takes a command (write, read, or delete) then there’s the domain (com.apple.finder), the key (AppleShowAllFiles) and finally the value, and in this instance the value is just a boolean YES or NO.

The Finder can be restarted from the command line too. And glue it together with a double ampersand:

defaults write com.apple.finder AppleShowAllFiles YES && killall Finder

And to reverse that, just use the delete command:

defaults delete com.apple.finder AppleShowAllFiles && killall Finder

(Loads more can be found by reading the manual at the command line: man defaults)

          

It’ll be interesting to see what F-Secure do with XFENCE.

I haven’t made use of any installed antivirus tools* since a brief dabble with Sophos many years ago, but there seems to be so many more threats now. When the savvy Mac developer Panic has a load of their source code stolen, it’s really past time to consider taking more active measures, anyone can be a victim.

* Although I’m frequently uploading applications to VirusTotal, so far I haven’t found anything other than the usual adware laden junk.
 
Entirely too late, but this is for anyone arriving here later still. PinkyMacGodess’s advice is almost perfect, there’s just a stray dot at the end of that command, the defaults tool takes a command (write, read, or delete) then there’s the domain (com.apple.finder), the key (AppleShowAllFiles) and finally the value, and in this instance the value is just a boolean YES or NO.

The Finder can be restarted from the command line too. And glue it together with a double ampersand:

defaults write com.apple.finder AppleShowAllFiles YES && killall Finder

And to reverse that, just use the delete command:

defaults delete com.apple.finder AppleShowAllFiles && killall Finder

(Loads more can be found by reading the manual at the command line: man defaults)

Isn't it 'defaults write com.apple.finder AppleShowAllFiles NO && killall Finder'?
 
Isn't it 'defaults write com.apple.finder AppleShowAllFiles NO && killall Finder'?

Yes, you could do that, but then there’s just a preference set in the plist that need not be there. Check out the manual page, it’s what delete is there for.

Removing the preference altogether would also automatically opt you back into any change that Apple makes in the future (not in this example as we can be sure Apple aren’t going to reverse this option, but with any other prefs it would).
 
Yes, you could do that, but then there’s just a preference set in the plist that need not be there. Check out the manual page, it’s what delete is there for.

Removing the preference altogether would also automatically opt you back into any change that Apple makes in the future (not in this example as we can be sure Apple aren’t going to reverse this option, but with any other prefs it would).

Elegant! Like!
 
It is now nearly end of June and I have heard nothing from anyone about this product or any updates or replacement product for existing users, any chance someone knows what is happening or are we left high and dry ?


Well as I always suspected, false promises from F-Secure and no contact, 2 years now, tossers !
[doublepost=1558650460][/doublepost]
Thanks :)

We will be contacting all of you existing LF customers via email hopefully still this week, based on the customer list we were provided. More information in the email, but basically you will have access to F-Secure XFENCE so no worries.
[doublepost=1491990536][/doublepost]

No need to do anything yet, we have the contact list and as mentioned above, will contact you soon :)

I think you are a liar sir ! 2 years and no contact at all
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.