A boxed value can never be changed in place. You just have to unbox the enum, do the operation and box it again:
boxedEnum = (MyEnum)boxedEnum & ~MyEnum.Flag2;
Edit:
Provided that the underlying type of the enum is int, you can just unbox it to int and box it to int. The boxed int can later on be unboxed to the enum type:
boxedEnum = (int)boxedEnum & ~2;
MyEnum value = (MyEnum)boxedEnum; // works both for a boxed int and a boxed MyEnum
