MacBook Pro :: When Using Filevault2 Can Create A File And Send It Someone Else

May 12, 2012

if you send a file to another user. Will they be able to read the file? 

Info:
MacBook Pro (13-inch Early 2011), Mac OS X (10.7.4)

View 1 Replies


ADVERTISEMENT

Software :: Unable To Send Anyone Any Type Of File / Using Leopard To Send Files On AIM

Nov 21, 2007

If anyone on here uses aim, have you had issues since using Leopard sending files on AIM(AOL instant messenger)? I am unable to send anyone any type of file on there. I can receive, but I am unable to send anyone anything....any suggestions? I can send files through yahoo...so I'm not too sure why AIM hates me so much.

View 2 Replies View Related

OS X V10.7 Lion :: Any Tools That Can Resize FileVault2 Partitions?

May 14, 2012

I just upgraded my HD to a 1T drive.  I had recently reinstalled everything on the original HD, and enabled FileVault2 on the drive and didn't want to go through the tedious process of reinstalling everything.  Instead, I used Clonzezilla to image the drive over.  Everything works properly.  My new drive boots as expected and everything on the FV2 partition shows up properly.  Of course, now I would like to extend my FV2 partition to fill the remaining part of the disk. Are there any tools (3rd party or native) that allow me to resize my FV2 partition?  Everything I have found to date indicates that I have to disable (decrypt) FV2, resize, and then re-enable FV2.  Seems like an extremely long and arduous process. Has noone been able to write a utitility to extend the partition size without needing to decrypt everything?  I'm running Lion 10.7.3. 

Info:
MacBook Pro, Mac OS X (10.7.3)

View 4 Replies View Related

Applications :: Create A Mailing List That I Can Send Out To A Group Using Mail?

Mar 16, 2009

I would like to create a mailing list that I can send out to a group of people using mail, I would like to store there contact information under a group called 'mailing list' but I do not want the contacts to appear in my main address book. Is there an app or a way to use mail so i can email the group but not have their contact information in my address book?

View 3 Replies View Related

OS X :: Create File List And Batch File Renaming?

Aug 10, 2009

So in windows I can create a file list, save it to a text file, and create a .bat file with rename commands for each file. for example:

Rename 000055-060409232023-CAM1.jpg cal000image0000055.jpg
Rename 000056-060409232020-CAM1.jpg cal000image0000056.jpg
Rename 000057-060409232016-CAM1.jpg cal000image0000057.jpg
Rename 000058-060409232012-CAM1.jpg cal000image0000058.jpg
Rename 000059-060409232008-CAM1.jpg cal000image0000059.jpg
Rename 000060-060409232004-CAM1.jpg cal000image0000060.jpg
Rename 000061-060409232001-CAM1.jpg cal000image0000061.jpg
Rename 000062-060409231957-CAM1.jpg cal000image0000062.jpg
Rename 000063-060409231953-CAM1.jpg cal000image0000063.jpg

how do I create a file list and then create a way to batch rename in os x? I know the commands, but I don't know of a way to do it on more than one file at a time. I have found a few renaming apps but they all appear to be focused on just iterating up instead of renaming specific files to a new name.

View 5 Replies View Related

MacBook Pro :: Send A Group Of Files In A Zip File?

Feb 29, 2012

I have Microsoft Office for MAC and send to send a group of files.  I would like to compress them into a zip file.  Is there a way to do that with my MAC?

Info:
MacBook Pro, Mac OS X (10.7.3)

View 2 Replies View Related

MacBook Pro :: Send A Numbers File To Someone Who Has Excel?

Jun 20, 2012

how can I send a Numbers file to someone who has excel

Info:
MacBook Pro, Mac OS X (10.6.8)

View 1 Replies View Related

OS X V10.7 Lion :: Create Mailing List (group) Of Colleagues To Whom I Send Common Email Every Week?

Mar 15, 2012

How do I create a mailing list (group) of colleagues to whom I send a common email every week? I've tried Help topics in Mail and on th apple site, to no avail.

View 10 Replies View Related

Intel Mac :: Send A PDF With File Name?

May 3, 2012

How do I send a PDF with a file name rather than seeing the entire file in the e-mail?

Info:iMac, Mac OS X (10.6.8)

View 1 Replies View Related

OS X :: Right Click File To Send Via EMail?

May 9, 2010

I want to be able to right click on a file and have the the option to send it to a mail recipient. Very Windows like I know but I think its a useful feature.

However with a twist I want to send it via GMail not the Mail app.

Is this at all possible?

View 2 Replies View Related

OS X :: Way To Create A Link To File?

Aug 18, 2006

I found a utility that allows me to copy a file's location to the clipboard, but is there a way to create a link to a file location? I'd like to be able to send co-workers a link to files or folders on shared servers, so they can just click the link and get to that location in their Finder. I seem to remember doing this with Windows. Can it be done in OS X?

View 5 Replies View Related

OS X :: Create A New File In Finder?

Oct 26, 2009

Is there really no way to create a new file in finder?

Windows has the simple right click->new menu....

View 7 Replies View Related

OS X :: Can You Create A File From Within Finder?

Jan 3, 2010

I've had my macbook for a couple of years now and I just figured you couldn't do this, but I might as well ask:

Can you create a file from within finder?

For example, on Windows machines, you can right click in explorer and it goes something like create new > [folder, text file, word doc, etc]. I know that you can add folders, but I'd love to be able to quickly add a new .txt file without having to open TextEdit first (not that it's any faster, just my workflow).

View 3 Replies View Related

OS X Technologies :: Create A Log File?

Apr 24, 2012

Been up for a while trying to figure this out with no luck. I created an app that will uninstall a program and all of it's files. 

example try                    do shell script "rm -rf /Applications/TestFakeApp"           end try     try                    do shell script "rm -rf /Applications/TestFakeApp2"           end try     try                    do shell script "rm -rf ~/Library/Preferences/com.FakeTestApp.plist"           end try          try                    do shell script "rm -rf ~/Library/Preferences/com.FakeTestApp2.plist" end try          try                    do shell script "rm -rf ~/Library/Logs/FakeTestApp*"           end try          try                    do shell script "rm -rf ~/Library/Application\ Support/FakeTestApp" end try 

there are alot more paths to remove but this is just a few for example 

I want to be able to create a log.txt file on the desktop to show what has been removed and or what could not be removed. 

I then tried by creating a text document by using 

do shell script "touch ~/Desktop/test.txt" tell application "Finder" open file ((path to desktop folder as text) & "test.txt") using ((path to applications folder as text) & "TextEdit.app")end tell 

but I don't know what to do next. 

1. Have it check for each file to see if it was deleted or not

2. add it into the test.txt file

3. save the file once done 

Info:
MacBook
Pro, Mac OS X (10.7.3)

View 13 Replies View Related

Applications :: IWeb File Cannot Save And Send?

Feb 5, 2009

me and my friend are starting to make a small site and want to try out iweb. The one problem I found is where does this file save to, I mean if my friend wants to work on the site where do i find the file to send it to him.

View 10 Replies View Related

Intel Mac :: Downsize A JPG File That Is To Large To Send?

Jun 7, 2012

How do I downsize a JPG picture file that is too large to send?

Info:
iMac, Mac OS X (10.6.8)

View 7 Replies View Related

Software :: How To Create A Txt File Natively

Dec 20, 2007

how to create a .txt file natively.

View 6 Replies View Related

OS X :: How To Sort File By Create Date

Sep 18, 2010

How do I sort files by create date in Finder? I have Name, Date Modified, Size and Kind. I see no way to add File Create Date.

View 2 Replies View Related

Applications :: How To Use Notepad To Create Log File

Dec 16, 2010

I am a mac newbie and I used to use Notepad to create log files like this: How to Use Notepad to Create a Log File. Is there something comparable on Mac?

View 5 Replies View Related

OS X :: Way To Create Virtual File For Game Cd

Aug 17, 2010

I'm currently running OSX 10.6.3 on a Macbook Pro and want to create a backup CD for Sims3.where the CD gets to the point that's it covered in scratches so I've generally created and run ISOs on the PC, but I'm not sure how to create a usable image on the Mac.

View 1 Replies View Related

Final Cut Pro X :: How To Create Own Projects File

Aug 23, 2014

Can i create my own FCP X Projects file?  I'm new to FCP X and the training I'm on said i should have a project and events folder in but I've only seen the FCP X Events file.  I'm afraid that these folders may not be able to communicate properly?

Info:
iMac

View 1 Replies View Related

IMac :: Bluetooth - Can't Send A File To My Cell Phone

Jul 31, 2009

I can't send a file to my cell phone. It has always worked, but now it doesnt anymore. I can send from my phone to computer, but when i click send file or browse device, nothing happens. I have bluetooth turned on on both devices.

View 2 Replies View Related

OS X V10.7 Lion :: Why Cannot Send A Full Resolution Jpg File In MAIL

Jul 2, 2012

I am trying to send a 2 MB jpg file.  My recipient consistently gets a thumbnail, JPEG file.  This has never happened to me before.  What must I do to send a full resolution jpg photo?

Info:
MacBook Pro, Mac OS X (10.7.4), Mail 5.2 (1278)

View 2 Replies View Related

Applications :: How To Create A Table From An Ascii File

Oct 13, 2009

I have a list in ascii/text format, where columns are separated by "|"'s. I'd like to read this into Numbers but by default it doesn't know what to do with those "|"'s of course. I've heard (though am unable to verify) that Excel has this ability to recognize separator symbols and put it in separate columns. Is there a way to do this with Numbers or any other Apple program?

View 1 Replies View Related

Windows On Mac :: How To Create A Fusion VM From An Image File

Feb 12, 2010

I made an image of my Windows XP laptop drive using Macrium. I can see the image file there on one of my Mac Pro's internal drives, but Im not able to select in Fusion.. Is there a way to make a Fusion VM from this image? If not, how do I go about creating a VM from my laptops's HD? I'm using Fusion 2.6.

View 5 Replies View Related

OS X :: Create New User Account And Transfer File

Aug 16, 2010

Today is the day i'd like to create a new user account and transfer all my files to that account. The problem? i've never tried this before! I will need step by step instuctions please.

View 4 Replies View Related

OS X Mavericks :: (10.9.4) Couldn’t Create Temporary File

Aug 29, 2014

I have a 1TB drive in my Mac Pro running Mavericks 10.9.4 and I went to disk utility to erase some free space on the drive. However I keep getting the error message: Secure Erase Free Space failed Secure erase Free Space failed with the error: Couldn't create temporary file. 

I Googled the error message and couldn't find anything. The error message is heaps unuseful, it doesn't tell me why it couldn't create a temporary file or what I can do to fix it.

Info:
Mac Pro (Early 2008), OS X Mavericks (10.9.4)

View 1 Replies View Related

Final Cut Pro X :: Cannot Create Master File Or Burn DVD

Jun 21, 2014

When trying to share to a master file I  get a notice that the operation failed and the details state: Frame 19587, Error 11

View 1 Replies View Related

MacBook :: Won't Send Mail 'unable To Send' Message Falls Off Screen

Apr 9, 2009

Bit of a strange one to describe this, but I tried to send a message to a lot of recipients and it wouldn't send (I used the wrong server). Now I have an error message that falls off the bottom of the screen and I can't clear it.

View 3 Replies View Related

OS X :: Click The 'send File' Option In The Bluetooth Menu, It Just Doesn't Do Anything?

Feb 15, 2008

I reinstalled Tiger a few days ago, im running the latest version 10.4.11.Since the reinstall when I try to click the 'send file' option in the bluetooth menu, it just doesn't do anything.My bluetooth is working fine with my mouse, but doesn't even recognise that Ive clicked the option when I try to send file.Anyone know what the problem is and how to fix it?

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved